k3s/examples/storm/storm-nimbus.json

29 lines
435 B
JSON
Raw Normal View History

2015-03-02 19:55:34 +00:00
{
"kind": "Pod",
2015-06-10 20:46:32 +00:00
"apiVersion": "v1",
2015-04-23 14:48:42 +00:00
"metadata": {
"name": "nimbus",
"labels": {
"name": "nimbus"
2015-03-02 19:55:34 +00:00
}
},
2015-04-23 14:48:42 +00:00
"spec": {
"containers": [
{
"name": "nimbus",
"image": "mattf/storm-nimbus",
"ports": [
{
"containerPort": 6627
}
],
"resources": {
"limits": {
"cpu": "100m"
}
}
}
]
2015-03-02 19:55:34 +00:00
}
2015-06-10 20:46:32 +00:00
}