Skip to content

Instantly share code, notes, and snippets.

@phstudy
Created March 7, 2019 14:44
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 phstudy/dfe627d955d3a8bfec18a258fd679c62 to your computer and use it in GitHub Desktop.
Save phstudy/dfe627d955d3a8bfec18a258fd679c62 to your computer and use it in GitHub Desktop.
nginx-deployment.yaml.tmpl
apiVersion: apps/v1
kind: Deployment
metadata:
name: ${DEPLOYMENT_NAME}
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment