1234567891011121314151617181920212223242526272829303132333435 |
- apiVersion: apps/v1
- kind: DaemonSet
- metadata:
- name: bind
- labels:
- service: bind
- spec:
- selector:
- matchLabels:
- service: bind
- updateStrategy:
- type: RollingUpdate
- rollingUpdate:
- maxUnavailable: 10%
- template:
- metadata:
- labels:
- service: bind
- spec:
- affinity:
- podAntiAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- - labelSelector:
- matchExpressions:
- - key: "service"
- operator: "In"
- values: ["bind"]
- topologyKey: "kubernetes.io/hostname"
- namespaces: []
- containers:
- - name: kubernetes-pause
- image: k8s.gcr.io/pause:latest
- - name: app
- image: k8s.gcr.io/nginx:test-cmd
|