In this step, we will deploy a Windows workload into the previously created namespace.
Navigate to the project in your Org where the cluster is located.
Select Applications -> Workloads
Click "New Workload" -> "Create New Workload"
Enter "windows-workload" for the name
Select "k8s YAML" for the Package Type
Select "Upload files manually"
Select the "Windows" namespace
Click "Continue"
Save the below specification file to your computer as "windows-workload.yaml".
Important
The 'nodeSelector' section, lines 40 & 41, specifies which OS to use. This is an important configuration to specify to avoid scheduling issues. Without a nodeSelector configuration, this deployment could be scheduled on a Linux node, causing it to fail. Kubernetes scheduling doesn't recognize Operating System, rather it is based on scores. For more information, please visit https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/ .
apiVersion:v1kind:Servicemetadata:name:win-webserverlabels:app:win-webserverspec:ports:# the port that this service should serve on-port:80targetPort:80selector:app:win-webservertype:NodePort---apiVersion:apps/v1kind:Deploymentmetadata:labels:app:win-webservername:win-webserverspec:replicas:2selector:matchLabels:app:win-webservertemplate:metadata:labels:app:win-webservername:win-webserverspec:containers:-name:windowswebserverimage:mcr.microsoft.com/windows/servercore:ltsc2019command:-powershell.exe--command-"<#codeusedfromhttps://gist.github.com/19WAS85/5424431#>;$$listener=New-ObjectSystem.Net.HttpListener;$$listener.Prefixes.Add('http://*:80/');$$listener.Start();$$callerCounts=@{};Write-Host('Listeningathttp://*:80/');while($$listener.IsListening){;$$context=$$listener.GetContext();$$requestUrl=$$context.Request.Url;$$clientIP=$$context.Request.RemoteEndPoint.Address;$$response=$$context.Response;Write-Host'';Write-Host('>{0}'-f$$requestUrl);;$$count=1;$$k=$$callerCounts.Get_Item($$clientIP);if($$k-ne$$null){$$count+=$$k};$$callerCounts.Set_Item($$clientIP,$$count);$$ip=(Get-NetAdapter|Get-NetIpAddress);$$header='<html><body><H1>WindowsContainerWebServer</H1>';$$callerCountsString='';$$callerCounts.Keys|%{$$callerCountsString+='<p>IP{0}callerCount{1}'-f$$ip[1].IPAddress,$$callerCounts.Item($$_)};$$footer='</body></html>';$$content='{0}{1}{2}'-f$$header,$$callerCountsString,$$footer;Write-Output$$content;$$buffer=[System.Text.Encoding]::UTF8.GetBytes($$content);$$response.ContentLength64=$$buffer.Length;$$response.OutputStream.Write($$buffer,0,$$buffer.Length);$$response.Close();$$responseStatus=$$response.StatusCode;Write-Host('<{0}'-f$$responseStatus)};"nodeSelector:kubernetes.io/os:windows
Click "Choose File" to upload the previously created YAML file