| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "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
- }
- ]
- }
- ]
- }
- }
- }
- }
|