Kp28
Kp28

Reputation: 1

How to add Windows node while creating cluster using Kubernetes on Google cloud platform?

I have tried creating Kubernetes cluster but all the nodes are linux based OS(Container-Optimized OS (cos) (default) and Ubuntu). I have windows based image stored on docker Hub I need to deploy this app to kubernetes cluster. I am using https://console.cloud.google.com/kubernetes/ to create cluster.

While creating nodes, in setting there are only two options: Container-Optimized OS (cos) (default) and Ubuntu.

Upvotes: 0

Views: 424

Answers (2)

pogao
pogao

Reputation: 11

I don't think you can run Windows nodes in GKE, even though Kubernetes itself supports Windows nodes (https://kubernetes.io/docs/getting-started-guides/windows/).

In my opinion, the other options you have are:

Hope that helps!

Upvotes: 0

John Hanley
John Hanley

Reputation: 81424

Windows is not supported by Google Kubernetes. There is a feature request that you can track: Feature request : Support for Windows Server Containers in GKE

You can launch your own Google Compute VM and run Windows containers. This article provides more information.

Upvotes: 1

Related Questions