christianlempa-boilerplates/kubernetes/templates/pv-and-pvc/civo-web.yml

27 lines
515 B
YAML
Raw Normal View History

2021-11-05 10:37:42 +01:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: civo-web
spec:
replicas: 1
selector:
matchLabels:
app: civo-web
template:
metadata:
labels:
app: civo-web
spec:
containers:
- name: civo-web
image: nginx
ports:
- name: web
containerPort: 80
volumeMounts:
- name: civo
2021-11-05 11:46:50 +01:00
mountPath: /usr/share/nginx/html
2021-11-05 10:37:42 +01:00
volumes:
- name: civo
persistentVolumeClaim:
claimName: civo