Skip to content

bump external-provisioner to v5.2.2 #1371

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion deploy/chart/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,17 @@ spec:
limits:
cpu: 500m
memory: 1024Mi
ports:
- containerPort: 8080
name: http-endpoint
protocol: TCP
livenessProbe:
httpGet:
path: /healthz/leader-election
port: http-endpoint
args:
- --csi-address=/csi/csi.sock
- --http-endpoint=:8080
- --volume-name-prefix=disk
- --strict-topology=true
- --timeout=150s
Expand All @@ -93,6 +102,7 @@ spec:
- --extra-create-metadata=true
- --default-fstype=ext4
- --v=5
- --logging-format={{ .Values.logging.format }}
- --kube-api-qps=100
- --kube-api-burst=200
volumeMounts:
Expand Down Expand Up @@ -181,8 +191,17 @@ spec:
limits:
cpu: 500m
memory: 1024Mi
ports:
- containerPort: 8090
name: http-endpoint
protocol: TCP
livenessProbe:
httpGet:
path: /healthz/leader-election
port: http-endpoint
args:
- --csi-address=/csi/csi.sock
- --http-endpoint=:8090
- --volume-name-prefix=nas
- --timeout=150s
- --leader-election=true
Expand Down Expand Up @@ -217,6 +236,7 @@ spec:
- name: external-oss-provisioner
args:
- --csi-address=/csi/csi.sock
- --http-endpoint=:8100
- --volume-name-prefix=oss
- --timeout=150s
- --leader-election=true
Expand All @@ -233,6 +253,14 @@ spec:
requests:
cpu: 10m
memory: 16Mi
ports:
- containerPort: 8100
name: http-endpoint
protocol: TCP
livenessProbe:
httpGet:
path: /healthz/leader-election
port: http-endpoint
volumeMounts:
- mountPath: /csi
name: oss-provisioner-dir
Expand All @@ -259,9 +287,9 @@ spec:
{{- if and .Values.csi.local.enabled .Values.csi.local.controller.enabled }}
- name: external-local-provisioner
image: {{ include "imageSpec" (list .Values "externalProvisioner") }}
imagePullPolicy: Always
args:
- --csi-address=/csi/csi.sock
- --http-endpoint=:8110
- --volume-name-prefix=local
- --strict-topology=true
- --timeout=150s
Expand All @@ -279,6 +307,14 @@ spec:
limits:
cpu: 500m
memory: 1024Mi
ports:
- containerPort: 8110
name: http-endpoint
protocol: TCP
livenessProbe:
httpGet:
path: /healthz/leader-election
port: http-endpoint
volumeMounts:
- name: local-provisioner-dir
mountPath: /csi
Expand Down
2 changes: 1 addition & 1 deletion deploy/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ images:
tag: "v4.6.1-aliyun"
externalProvisioner:
repo: acs/csi-provisioner
tag: "v5.0.3-aliyun"
tag: "v5.2.2-aliyun"
externalResizer:
repo: acs/csi-resizer
tag: "v1.11.2-aliyun"
Expand Down