17 lines
267 B
YAML
17 lines
267 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: DaemonSet
|
||
|
metadata:
|
||
|
name: my-daemonset
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: my-daemonset
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: my-damonset
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:1.19.1
|