21 lines
383 B
YAML
21 lines
383 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: nginx-daemonset
|
|
labels:
|
|
app: &app nginx
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
name: nginx-daemonset
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: nginx-daemonset
|
|
spec:
|
|
containers:
|
|
- image: nginx:1.28.2-alpine
|
|
name: nginx-daemonset
|
|
ports:
|
|
- containerPort: 80
|