Skip to content

Commit 6c932c3

Browse files
authored
Merge pull request #2144 from kubernetes-sigs/add-CriticalAddonsOnly-toleration
fix: add CriticalAddonsOnly toleration into controller pod
2 parents 338b354 + 0d3e6cf commit 6c932c3

File tree

12 files changed

+24
-0
lines changed

12 files changed

+24
-0
lines changed
17 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
19 Bytes
Binary file not shown.

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ controller:
114114
- key: "node-role.kubernetes.io/control-plane"
115115
operator: "Exists"
116116
effect: "NoSchedule"
117+
- key: "CriticalAddonsOnly"
118+
operator: "Exists"
119+
effect: "NoSchedule"
117120

118121
node:
119122
cloudConfigSecretName: azure-cloud-provider
21 Bytes
Binary file not shown.

charts/v1.30.6/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
15 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.29.9/csi-azurefile-controller.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ spec:
2929
- key: "node-role.kubernetes.io/control-plane"
3030
operator: "Exists"
3131
effect: "NoSchedule"
32+
- key: "CriticalAddonsOnly"
33+
operator: "Exists"
34+
effect: "NoSchedule"
3235
containers:
3336
- name: csi-provisioner
3437
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v3.5.0

0 commit comments

Comments
 (0)