Skip to content

Commit a0942df

Browse files
authored
Merge pull request #1648 from andyzhangx/add-CriticalAddonsOnly-toleration-1.25
[release-1.25] fix: add CriticalAddonsOnly toleration into controller pod
2 parents cdc5e8f + 2804f45 commit a0942df

File tree

6 files changed

+12
-0
lines changed

6 files changed

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ controller:
103103
- key: "node-role.kubernetes.io/control-plane"
104104
operator: "Exists"
105105
effect: "NoSchedule"
106+
- key: "CriticalAddonsOnly"
107+
operator: "Exists"
108+
effect: "NoSchedule"
106109

107110
node:
108111
name: csi-blob-node
11 Bytes
Binary file not shown.

charts/v1.25.0/blob-csi-driver/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ controller:
103103
- key: "node-role.kubernetes.io/control-plane"
104104
operator: "Exists"
105105
effect: "NoSchedule"
106+
- key: "CriticalAddonsOnly"
107+
operator: "Exists"
108+
effect: "NoSchedule"
106109

107110
node:
108111
name: csi-blob-node

deploy/csi-blob-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.25.0/csi-blob-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)