Skip to content

Instantly share code, notes, and snippets.

@techbunny
Last active July 14, 2017 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techbunny/689bd2ec4df4c011f99bae5a8a759866 to your computer and use it in GitHub Desktop.
Save techbunny/689bd2ec4df4c011f99bae5a8a759866 to your computer and use it in GitHub Desktop.
Windows Container with Node.js
{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "node-con-cra",
"labels": {
"name": "node-con-cra"
}
},
"spec": {
"containers": [
{
"name": "node-con-cra",
"image": "plantreg.azurecr.io/plants/node-con-cra",
"ports": [
{
"containerPort": 3001
}
]
}
],
"nodeSelector": {
"beta.kubernetes.io/os": "windows"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment