Toleration fix for helm chart and yaml.
This commit is contained in:
parent
52b29e1725
commit
0d5ac0b120
3 changed files with 20 additions and 0 deletions
deploy
|
@ -52,6 +52,15 @@ spec:
|
||||||
labels:
|
labels:
|
||||||
app: csi-s3
|
app: csi-s3
|
||||||
spec:
|
spec:
|
||||||
|
{{- if .Values.tolerations.create }}
|
||||||
|
tolerations:
|
||||||
|
- key: CriticalAddonsOnly
|
||||||
|
operator: Exists
|
||||||
|
- effect: NoExecute
|
||||||
|
operator: Exists
|
||||||
|
- effect: NoSchedule
|
||||||
|
operator: Exists
|
||||||
|
{{- end }}
|
||||||
serviceAccount: csi-s3
|
serviceAccount: csi-s3
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
|
@ -37,3 +37,7 @@ secret:
|
||||||
secretKey: ""
|
secretKey: ""
|
||||||
# Endpoint
|
# Endpoint
|
||||||
endpoint: https://storage.yandexcloud.net
|
endpoint: https://storage.yandexcloud.net
|
||||||
|
|
||||||
|
tolerations:
|
||||||
|
# Specifies whether the tolerations for Yandex Cloud should be created (CriticalAddonsOnly)
|
||||||
|
create: true
|
|
@ -52,6 +52,13 @@ spec:
|
||||||
labels:
|
labels:
|
||||||
app: csi-s3
|
app: csi-s3
|
||||||
spec:
|
spec:
|
||||||
|
tolerations:
|
||||||
|
- key: CriticalAddonsOnly
|
||||||
|
operator: Exists
|
||||||
|
- effect: NoExecute
|
||||||
|
operator: Exists
|
||||||
|
- effect: NoSchedule
|
||||||
|
operator: Exists
|
||||||
serviceAccount: csi-s3
|
serviceAccount: csi-s3
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
Loading…
Add table
Reference in a new issue