ashur
ashur

Reputation: 4307

How to interact with Kubernetes on docker for desktop

One of the options to use Kubernetes on Windows 10 is to enable it from Docker for Windows.

However reading many tutorials from K8S site they manage something by using minikube - for example adding addons.

Since using the option with docker we don't have minikube.

For example, how to add addon to such instance?

Upvotes: 0

Views: 70

Answers (1)

coderanger
coderanger

Reputation: 54191

You would have to manually grab the addon YAML file and kubectl apply -f it. But most things have Helm charts available too so maybe just do that instead?

Upvotes: 1

Related Questions