mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-13 09:50:18 +00:00
28 lines
664 B
YAML
28 lines
664 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: bind
|
|
spec:
|
|
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:2.0
|