Skip to content

Commit c7a6924

Browse files
committed
fix: add CriticalAddonsOnly toleration into controller pod
1 parent 4b62975 commit c7a6924

14 files changed

+26
-2
lines changed

Diff for: charts/latest/blob-csi-driver-v0.0.0.tgz

14 Bytes
Binary file not shown.

Diff for: charts/latest/blob-csi-driver/values.yaml

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

Diff for: charts/v1.23.9/blob-csi-driver-v1.23.9.tgz

13 Bytes
Binary file not shown.

Diff for: charts/v1.23.9/blob-csi-driver/values.yaml

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

Diff for: charts/v1.24.5/blob-csi-driver-v1.24.5.tgz

13 Bytes
Binary file not shown.

Diff for: charts/v1.24.5/blob-csi-driver/values.yaml

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

Diff for: charts/v1.25.0/blob-csi-driver-1.25.0.tgz

11 Bytes
Binary file not shown.

Diff for: charts/v1.25.0/blob-csi-driver/values.yaml

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

Diff for: deploy/csi-blob-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

Diff for: deploy/v1.23.9/csi-blob-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

Diff for: deploy/v1.23.9/csi-blob-node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ spec:
136136
args:
137137
- "--v=5"
138138
- "--endpoint=$(CSI_ENDPOINT)"
139-
- "--enable-blobfuse-proxy=false"
139+
- "--enable-blobfuse-proxy=true"
140140
- "--blobfuse-proxy-endpoint=$(BLOBFUSE_PROXY_ENDPOINT)"
141141
- "--nodeid=$(KUBE_NODE_NAME)"
142142
- "--user-agent-suffix=OSS-kubectl"

Diff for: deploy/v1.24.5/csi-blob-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

Diff for: deploy/v1.24.5/csi-blob-node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ spec:
136136
args:
137137
- "--v=5"
138138
- "--endpoint=$(CSI_ENDPOINT)"
139-
- "--enable-blobfuse-proxy=false"
139+
- "--enable-blobfuse-proxy=true"
140140
- "--blobfuse-proxy-endpoint=$(BLOBFUSE_PROXY_ENDPOINT)"
141141
- "--nodeid=$(KUBE_NODE_NAME)"
142142
- "--user-agent-suffix=OSS-kubectl"

Diff for: deploy/v1.25.0/csi-blob-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)