Created
April 20, 2020 00:05
-
-
Save SanthoshBabuMR/8e56ae4c4d7858f492c5ba3581e40f6f 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: myapp-rs | |
| labels: | |
| app: myapp | |
| spec: | |
| template: | |
| metadata: | |
| name: myapp-pod | |
| labels: | |
| app: myapp | |
| type: front-end | |
| spec: | |
| containers: | |
| - name: nginx-container | |
| image: nginx | |
| - name: redis-container | |
| image: redis | |
| selector: | |
| matchLabels: | |
| app: myapp | |
| type: front-end | |
| replicas: 3 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment