Created
January 9, 2021 09:54
-
-
Save emreozkangit/a9fd1ec335c892bcfdfeca301ed742c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: win-webserver | |
labels: | |
app: win-webserver | |
spec: | |
ports: | |
# the port that this service should serve on | |
- port: 80 | |
targetPort: 80 | |
selector: | |
app: win-webserver | |
type: LoadBalancer | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: win-webserver | |
name: win-webserver | |
spec: | |
selector: | |
matchLabels: | |
app: win-webserver | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: win-webserver | |
name: win-webserver | |
spec: | |
tolerations: | |
- key: "os" | |
value: "Windows" | |
Effect: "NoSchedule" | |
containers: | |
- name: windowswebserver | |
image: mcr.microsoft.com/windows/servercore:ltsc2019 | |
imagePullPolicy: IfNotPresent | |
command: | |
- powershell.exe | |
- -command | |
- $listener = New-Object System.Net.HttpListener; $listener.Prefixes.Add('http://*:80/'); $listener.Start();Write-Host('Listening at http://*:80/'); while ($listener.IsListening) { $context = $listener.GetContext(); $response = $context.Response; $content='<html><body><H1>Windows Container Web Server</H1></body></html>'; $buffer = [System.Text.Encoding]::UTF8.GetBytes($content); $response.ContentLength64 = $buffer.Length; $response.OutputStream.Write($buffer, 0, $buffer.Length); $response.Close(); }; | |
nodeSelector: | |
beta.kubernetes.io/os: windows |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment