Skip to content

Instantly share code, notes, and snippets.

@sillysachin
Forked from matthewpalmer/deployment.yaml
Created February 4, 2021 13:13
Show Gist options
  • Select an option

  • Save sillysachin/dd7840f2d145dcba40563d30b0268001 to your computer and use it in GitHub Desktop.

Select an option

Save sillysachin/dd7840f2d145dcba40563d30b0268001 to your computer and use it in GitHub Desktop.
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