Files
virtual-kubelet/examples/iis-pod.yaml
Patrick Lang 077263af25 Fix scheduling for Windows example (#83)
There shouldn't be a nodename selector. That prevents it from working in recent builds configured with `az aks install-connector`
2018-01-31 12:07:37 -08:00

25 lines
434 B
YAML

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
automountServiceAccountToken: false
tolerations:
- key: azure.com/aci
effect: NoSchedule