k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/test/fixtures/pkg/kubectl/cmd/apply/rc.json (about) 1 { 2 "apiVersion": "v1", 3 "kind": "ReplicationController", 4 "metadata": { 5 "name": "test-rc", 6 "labels": { 7 "name": "test-rc" 8 } 9 }, 10 "spec": { 11 "replicas": 1, 12 "template": { 13 "metadata": { 14 "labels": { 15 "name": "test-rc" 16 } 17 }, 18 "spec": { 19 "containers": [ 20 { 21 "name": "test-rc", 22 "image": "nginx", 23 "ports": [ 24 { 25 "containerPort": 80 26 } 27 ] 28 } 29 ] 30 } 31 } 32 } 33 }