Skip to content

Commit

Permalink
Merge pull request #1647 from andyzhangx/add-CriticalAddonsOnly-toler…
Browse files Browse the repository at this point in the history
…ation

fix: add CriticalAddonsOnly toleration into controller pod
  • Loading branch information
andyzhangx authored Oct 19, 2024
2 parents 4b62975 + c7a6924 commit 2804061
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 2 deletions.
Binary file modified charts/latest/blob-csi-driver-v0.0.0.tgz
Binary file not shown.
3 changes: 3 additions & 0 deletions charts/latest/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ controller:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"

node:
name: csi-blob-node
Expand Down
Binary file modified charts/v1.23.9/blob-csi-driver-v1.23.9.tgz
Binary file not shown.
3 changes: 3 additions & 0 deletions charts/v1.23.9/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ controller:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"

node:
name: csi-blob-node
Expand Down
Binary file modified charts/v1.24.5/blob-csi-driver-v1.24.5.tgz
Binary file not shown.
3 changes: 3 additions & 0 deletions charts/v1.24.5/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ controller:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"

node:
name: csi-blob-node
Expand Down
Binary file modified charts/v1.25.0/blob-csi-driver-1.25.0.tgz
Binary file not shown.
3 changes: 3 additions & 0 deletions charts/v1.25.0/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ controller:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"

node:
name: csi-blob-node
Expand Down
3 changes: 3 additions & 0 deletions deploy/csi-blob-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ spec:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"
containers:
- name: csi-provisioner
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0
Expand Down
3 changes: 3 additions & 0 deletions deploy/v1.23.9/csi-blob-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ spec:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"
containers:
- name: csi-provisioner
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0
Expand Down
2 changes: 1 addition & 1 deletion deploy/v1.23.9/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ spec:
args:
- "--v=5"
- "--endpoint=$(CSI_ENDPOINT)"
- "--enable-blobfuse-proxy=false"
- "--enable-blobfuse-proxy=true"
- "--blobfuse-proxy-endpoint=$(BLOBFUSE_PROXY_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
- "--user-agent-suffix=OSS-kubectl"
Expand Down
3 changes: 3 additions & 0 deletions deploy/v1.24.5/csi-blob-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ spec:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"
containers:
- name: csi-provisioner
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0
Expand Down
2 changes: 1 addition & 1 deletion deploy/v1.24.5/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ spec:
args:
- "--v=5"
- "--endpoint=$(CSI_ENDPOINT)"
- "--enable-blobfuse-proxy=false"
- "--enable-blobfuse-proxy=true"
- "--blobfuse-proxy-endpoint=$(BLOBFUSE_PROXY_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
- "--user-agent-suffix=OSS-kubectl"
Expand Down
3 changes: 3 additions & 0 deletions deploy/v1.25.0/csi-blob-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ spec:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Exists"
effect: "NoSchedule"
containers:
- name: csi-provisioner
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0
Expand Down

0 comments on commit 2804061

Please sign in to comment.