From 2b68da36ea1f6c29d3309db38043efff7223895e Mon Sep 17 00:00:00 2001 From: Robbie Zhang Date: Wed, 27 Dec 2017 15:32:05 -0800 Subject: [PATCH] Add an example for Windows pod Add iis-pod.yaml to start a Windows pod in ACI --- examples/iis-pod.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 examples/iis-pod.yaml diff --git a/examples/iis-pod.yaml b/examples/iis-pod.yaml new file mode 100644 index 000000000..5b2328ad1 --- /dev/null +++ b/examples/iis-pod.yaml @@ -0,0 +1,25 @@ +apiVersion: v1 +kind: Pod +metadata: + name: iis +spec: + containers: + - image: microsoft/iis + imagePullPolicy: Always + name: iis + resources: + requests: + memory: 4G + cpu: 2 + ports: + - containerPort: 80 + name: http + protocol: TCP + - containerPort: 443 + name: https + dnsPolicy: Default + nodeName: virtual-kubelet-aciconnector-win + automountServiceAccountToken: false + tolerations: + - key: azure.com/aci + effect: NoSchedule