Skip to content

Instantly share code, notes, and snippets.

@panggi
Last active February 6, 2018 08:01
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 panggi/eb1f95645169f22974481643f923ec7c to your computer and use it in GitHub Desktop.
Save panggi/eb1f95645169f22974481643f923ec7c to your computer and use it in GitHub Desktop.
Sample of k8s nginx deployment yaml
apiVersion: v1beta1
kind: Deployment
metadata:
name: nginx-deployment
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