Created
August 25, 2017 22:17
-
-
Save seanknox/2b16e658487b48b3c6fe11ded1f6dc41 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": "Pod", | |
"metadata": { | |
"name": "iis", | |
"labels": { | |
"name": "iis" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"name": "iis", | |
"image": "nanoserver/iis", | |
"ports": [ | |
{ | |
"containerPort": 80 | |
} | |
] | |
} | |
], | |
"nodeSelector": { | |
"beta.kubernetes.io/os": "windows" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment