mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-09 13:29:29 +00:00
28 lines
678 B
YAML
28 lines
678 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: gcr.io/google-containers/pause:2.0
|