mirror of
https://github.com/k3s-io/k3s.git
synced 2026-05-27 12:18:10 -04:00
18 lines
369 B
YAML
18 lines
369 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: test-daemonset
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: test-daemonset
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: test-daemonset
|
|
spec:
|
|
containers:
|
|
- name: webserver
|
|
image: rancher/mirrored-library-nginx:1.29.1-alpine
|
|
ports:
|
|
- containerPort: 80
|