Created
February 12, 2019 02:36
-
-
Save matthewpalmer/3a63fc20ecbf5d82ffe5bf1a8ec968ac 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
Very helpful file, although I had to change the strategy to work
strategy: type: Recreate