Created
April 6, 2016 11:05
-
-
Save kadel/d5b3019f51611e94bf88033f33b11690 to your computer and use it in GitHub Desktop.
simple replicationController with busybox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "kind": "ReplicationController", | |
| "apiVersion": "v1", | |
| "metadata": { | |
| "name": "busybox", | |
| "labels": { | |
| "name": "busybox" | |
| } | |
| }, | |
| "spec": { | |
| "replicas": 1, | |
| "selector": { | |
| "name": "busybox", | |
| "test": "test" | |
| }, | |
| "template": { | |
| "metadata": { | |
| "labels": { | |
| "name": "busybox", | |
| "test": "test" | |
| } | |
| }, | |
| "spec": { | |
| "containers": [ | |
| { | |
| "name": "busybox", | |
| "image": "busybox", | |
| "cmd": ["sleep", "3600"], | |
| "readinessProbe": { | |
| "exec": { "command": ["/bin/true"] }, | |
| "periodSeconds": 10 | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment