Skip to content

Commit f212633

Browse files
committed
add warning for ambassador addon
1 parent 28770a3 commit f212633

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cmd/minikube/cmd/config/enable.go

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ var addonsEnableCmd = &cobra.Command{
4646
out.Styled(style.Waiting, "using metrics-server addon, heapster is deprecated")
4747
addon = "metrics-server"
4848
}
49+
if addon == "ambassador" {
50+
out.Styled(style.Warning, "The ambassador addon has stopped working as of v1.23.0, for more details visit: https://github.com/datawire/ambassador-operator/issues/73")
51+
}
4952
viper.Set(config.AddonImages, images)
5053
viper.Set(config.AddonRegistries, registries)
5154
err := addons.SetAndSave(ClusterFlagValue(), addon, "true")

0 commit comments

Comments
 (0)