Skip to content

Instantly share code, notes, and snippets.

@securetorobert
Created June 7, 2020 20:48
Show Gist options
  • Save securetorobert/110ae3c555a81bc6f7b7f898ab637b6e to your computer and use it in GitHub Desktop.
Save securetorobert/110ae3c555a81bc6f7b7f898ab637b6e to your computer and use it in GitHub Desktop.
Sample nginx deployment
apiVersion: apps/v1
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.14.2
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment