-
-
Save sillysachin/dd7840f2d145dcba40563d30b0268001 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
| kind: Deployment | |
| apiVersion: extensions/v1beta1 | |
| metadata: | |
| name: nginx-deployment | |
| spec: | |
| # A deployment's specification really only | |
| # has a few useful options | |
| # 1. How many copies of each pod do we want? | |
| replicas: 3 | |
| # 2. How do want to update the pods? | |
| strategy: Recreate | |
| # 3. Which pods are managed by this deployment? | |
| selector: | |
| # This must match the labels we set on the pod! | |
| matchLabels: | |
| deploy: example | |
| # This template field is a regular pod configuration | |
| # nested inside the deployment spec | |
| template: | |
| metadata: | |
| # Set labels on the pod. | |
| # This is used in the deployment selector. | |
| labels: | |
| deploy: example | |
| spec: | |
| containers: | |
| - name: nginx | |
| image: nginx:1.7.9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment