mirror of
https://github.com/kubernetes/kubectl.git
synced 2026-02-23 01:41:57 -05:00
33 lines
545 B
JSON
33 lines
545 B
JSON
{
|
|
"apiVersion": "v1",
|
|
"kind": "ReplicationController",
|
|
"metadata": {
|
|
"name": "test-rc",
|
|
"labels": {
|
|
"name": "test-rc"
|
|
}
|
|
},
|
|
"spec": {
|
|
"replicas": 1,
|
|
"template": {
|
|
"metadata": {
|
|
"labels": {
|
|
"name": "test-rc"
|
|
}
|
|
},
|
|
"spec": {
|
|
"containers": [
|
|
{
|
|
"name": "test-rc",
|
|
"image": "nginx",
|
|
"ports": [
|
|
{
|
|
"containerPort": 80
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|