1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-16 21:38:23 +00:00
node-feature-discovery/demo/helper-scripts/demo-pod-without-discovery.json.template
Balaji Subramaniam 320845f8dd Added demo.
- Added helper scripts for running the apps.
- Added templates to express affinity and anti-affinity.
- Updated/Added readme appropriately.
- Added asciicast where appropriate.
2016-09-30 13:10:05 -07:00

22 lines
511 B
Text

{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "demo-APP-NUM"
},
"spec": {
"containers": [
{
"image": "intelsdi/node-feature-discovery-IMG",
"name": "demo-container-APP-NUM",
"ports": [
{
"containerPort": 3351,
"hostPort": 10001
}
]
}
],
"restartPolicy": "Never"
}
}