k8sall/blog/blog-daemonset.yaml
Justine Pelletreau b40aa7b60a archives added
2022-06-25 12:29:03 +02:00

28 lines
528 B
YAML

apiVersion: apps/v1
kind: DaemonSet
metadata:
labels:
run: blog
name: blog
spec:
selector:
matchLabels:
run: blog
template:
metadata:
labels:
run: blog
spec:
containers:
- image: nginx:latest
name: blog
imagePullPolicy: "Always"
volumeMounts:
- mountPath: /usr/share/nginx/html
name: blog
restartPolicy: Always
volumes:
- name: blog
persistentVolumeClaim:
claimName: blog