Skip to content

Instantly share code, notes, and snippets.

@AngelChaidez
Last active May 10, 2023 00:19
Show Gist options
  • Save AngelChaidez/eb1987c78ec3f438419c4bdc7c902912 to your computer and use it in GitHub Desktop.
Save AngelChaidez/eb1987c78ec3f438419c4bdc7c902912 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: deployment1
spec:
replicas: 2
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
ports:
- containerPort: 80
volumeMounts:
- name: html
mountPath: /usr/share/nginx/html
volumes:
- name: html
configMap:
name: deployment1-config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment