Код IT
← Каталог

Справочник по Kubernetes — DaemonSet

Фрагмент из «Справочник по Kubernetes»: DaemonSet.

yaml infra-securityencyclopedia8-06-konteynerizatsiya-i-orkestratsiya-211 embed URL статья в энциклопедии
YAML main.yaml
spec:
  selector:
    matchLabels:
      app: fluentd
  template: # шаблон Pod
    metadata:
      labels:
        app: fluentd
    spec:
      containers: [...]
  updateStrategy:
    type: RollingUpdate|OnDelete
    rollingUpdate:
      maxUnavailable: <целое или процент>
  minReadySeconds: <целое>
spec:
  selector:
    matchLabels:
      app: fluentd
  template: # шаблон Pod
    metadata:
      labels:
        app: fluentd
    spec:
      containers: [...]
  updateStrategy:
    type: RollingUpdate|OnDelete
    rollingUpdate:
      maxUnavailable: <целое или процент>
  minReadySeconds: <целое>