Docker for Windows with Kubernetes and Windows Containers

9/6/2019

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)?

-- ShaneKm
.net-core
c#
docker
docker-for-windows
kubernetes

1 Answer

9/7/2019

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

-- KeepCalmAndCarryOn
Source: StackOverflow