Skip to content

Commit af52fee

Browse files
authored
Merge pull request #2145 from kubernetes-sigs/add-CriticalAddonsOnly-toleration-1.31
[release-1.31] fix: add CriticalAddonsOnly toleration into controller pod
2 parents 7c06077 + 4a3beda commit af52fee

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed
21 Bytes
Binary file not shown.

charts/latest/azurefile-csi-driver/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ controller:
108108
- key: "node-role.kubernetes.io/control-plane"
109109
operator: "Exists"
110110
effect: "NoSchedule"
111+
- key: "CriticalAddonsOnly"
112+
operator: "Exists"
113+
effect: "NoSchedule"
111114

112115
node:
113116
strategyType: RollingUpdate
17 Bytes
Binary file not shown.

charts/v1.31.0/azurefile-csi-driver/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ controller:
108108
- key: "node-role.kubernetes.io/control-plane"
109109
operator: "Exists"
110110
effect: "NoSchedule"
111+
- key: "CriticalAddonsOnly"
112+
operator: "Exists"
113+
effect: "NoSchedule"
111114

112115
node:
113116
strategyType: RollingUpdate

deploy/csi-azurefile-controller.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ spec:
3232
- key: "node-role.kubernetes.io/control-plane"
3333
operator: "Exists"
3434
effect: "NoSchedule"
35+
- key: "CriticalAddonsOnly"
36+
operator: "Exists"
37+
effect: "NoSchedule"
3538
containers:
3639
- name: csi-provisioner
3740
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0

deploy/v1.31.0/csi-azurefile-controller.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ spec:
3232
- key: "node-role.kubernetes.io/control-plane"
3333
operator: "Exists"
3434
effect: "NoSchedule"
35+
- key: "CriticalAddonsOnly"
36+
operator: "Exists"
37+
effect: "NoSchedule"
3538
containers:
3639
- name: csi-provisioner
3740
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0

0 commit comments

Comments
 (0)