Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
iconfalse

https://dev-k8sref-io.web.app/docs/workloads/daemonset-v1/

Info
iconfalse


Code Block
titledaemonset.yaml
linenumberstrue
apiVersion: apps/v1
kind: DaemonSet
metadata:
  name: monitorgin-daemon
spec:
  selector:
    matchLabels:
      app: monitoring-agent
  template:
    metadata:
      labels:
        app: monitoring-agent
    spec:
      containers:
        - name: monitoring-agent
          image: monitoring-agent
 

...