mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-03-17 16:12:49 -04:00
20 lines
285 B
JSON
20 lines
285 B
JSON
|
|
{
|
||
|
|
"kind": "Pod",
|
||
|
|
"apiVersion": "v1",
|
||
|
|
"metadata": {
|
||
|
|
"name": "name",
|
||
|
|
"labels": {
|
||
|
|
"name": "redis-master"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"spec": {
|
||
|
|
"containers": [
|
||
|
|
{
|
||
|
|
"name": "master",
|
||
|
|
"image": "redis",
|
||
|
|
"args": "this is a bad command"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|