Home > Mobile >  What is the equivalent command of 'minikube addons list' in Kubernetes?
What is the equivalent command of 'minikube addons list' in Kubernetes?

Time:10-25

The command 'kubectl addons list' throws an error: Error: unknown command "addons" for "kubectl" Run 'kubectl --help' for usage.

The command 'kubectl plugin list' seems to return something different. error: unable to find any kubectl plugins in your PATH

Thanks

CodePudding user response:

as you have stated that you want to enable ingress in your kubernetes cluster:

it works differently on full-blown k8s than in minikube.

in kubernetes, you will need to deploy and configure and ingress controller. having done that the ingress controller will then watch resources of type "ingress".

check the official documentation here for a list of supported ingress controllers and here for an example how to deploy the nginx ingress controller

  • Related