Skip to content

Commit 4a3beda

Browse files
committed
fix: add CriticalAddonsOnly toleration into controller pod
1 parent 7c06077 commit 4a3beda

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

+3
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

+3
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

+3
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

+3
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)