Created
August 7, 2018 18:01
-
-
Save georgeck/67037e19149e6c2d12ac75a38c65c66a to your computer and use it in GitHub Desktop.
This file contains 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
apiVersion: v1 | |
kind: ReplicationController | |
metadata: | |
name: hello-rc | |
spec: | |
replicas: 10 | |
selector: | |
app: hello-world | |
template: | |
metadata: | |
labels: | |
app: hello-world | |
spec: | |
containers: | |
- name: hello-ctr | |
image: nigelpoulton/pluralsight-docker-ci:latest | |
ports: | |
- containerPort: 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment