kubernetes/StatefullSet&DaemonSet/nginx-daemonset.yml

16 lines
277 B
YAML
Raw Permalink Normal View History

2022-04-05 19:45:59 +02:00
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: nginx-daemonset
spec:
selector:
matchLabels:
app: nginx-daemonset-app
template:
metadata:
labels:
app: nginx-daemonset-app
spec:
containers:
- image: nginx
name: nginx