Created
July 19, 2018 10:43
-
-
Save serragnoli/703428e39dc74dcb03050a18507927c2 to your computer and use it in GitHub Desktop.
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
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: tutum-deployment | |
| labels: | |
| app: tutum | |
| spec: | |
| replicas: 3 | |
| selector: | |
| matchLabels: | |
| app: tutum | |
| template: | |
| metadata: | |
| labels: | |
| app: tutum | |
| spec: | |
| containers: | |
| - name: tutum | |
| image: tutum/hello-world | |
| ports: | |
| - containerPort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment