ShaneKm
ShaneKm

Reputation: 21328

Docker for Windows with Kubernetes and Windows Containers

Whenever switching to Windows Containers in Docker for windows, Kubernetes option is missing after restart.

enter image description here

I'm running windows 10 Enterprise.

Is is possible to create windows container (for .net framework app) and deploy kubernetes? Or are only linux containers supported on kubernetes (meaning only .net Standard/Core would work)?

Upvotes: 0

Views: 219

Answers (1)

KeepCalmAndCarryOn
KeepCalmAndCarryOn

Reputation: 9075

You can run Windows nodes and containers on Kubernetes but the Kubernetes master (control plane) has to be Linux.

https://kubernetes.io/docs/setup/production-environment/windows/intro-windows-in-kubernetes/

Similarly, you need to be running Windows Server 2019 for Kubernetes GA on Windows - Windows 10/Server 2016 is possible but it is considered beta

Upvotes: 1

Related Questions