Skip to content

Instantly share code, notes, and snippets.

@bryanl
Created April 25, 2020 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanl/cd7f799057abb265f9e18db28e23ab91 to your computer and use it in GitHub Desktop.
Save bryanl/cd7f799057abb265f9e18db28e23ab91 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app: nginx
replicas: 2 # tells deployment to run 2 pods matching the template
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment