Skip to content

Instantly share code, notes, and snippets.

@pretty25
Created April 21, 2020 15:55
Show Gist options
  • Save pretty25/c39154f286858751c2280a1066fb138c to your computer and use it in GitHub Desktop.
Save pretty25/c39154f286858751c2280a1066fb138c to your computer and use it in GitHub Desktop.
k8-deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
selector:
matchLabels:
app: nginx
replicas: 1
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment