-
Notifications
You must be signed in to change notification settings - Fork 45
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
azuredisk: bump version to 0.5.0 #394
Changes from 1 commit
f596c8f
62e9362
f80ba7d
7145be0
c4a9060
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ spec: | |
- name: csi-provisioner | ||
image: "{{ .Values.image.csiProvisioner.repository }}:{{ .Values.image.csiProvisioner.tag }}" | ||
args: | ||
- "--provisioner=disk.csi.azure.com" | ||
- --provisioner=disk.csi.azure.com | ||
- --csi-address=$(ADDRESS) | ||
- --timeout=120s | ||
- --retry-interval-start=1s | ||
|
@@ -33,7 +33,7 @@ spec: | |
{{- end}} | ||
- --enable-leader-election | ||
- --leader-election-type=leases | ||
- "--v=5" | ||
- --v=5 | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
|
@@ -50,8 +50,8 @@ spec: | |
- --retry-interval-start=1s | ||
- --retry-interval-max=5m | ||
- --worker-threads=20 | ||
- "-leader-election" | ||
- "-leader-election-type=leases" | ||
- -leader-election | ||
- -leader-election-type=leases | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
|
@@ -75,7 +75,7 @@ spec: | |
image: "{{ .Values.image.csiSnapshotter.repository }}:{{ .Values.image.csiSnapshotter.tag }}" | ||
args: | ||
- --csi-address=$(ADDRESS) | ||
- "-leader-election" | ||
- -leader-election | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. doesn't it need to be double-dash ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. look at https://github.com/kubernetes-sigs/azuredisk-csi-driver for the next upgrade There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will ignore the inconsistency of the also in upstream existing arguments 🤣 ... for now 😉 |
||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
|
@@ -85,9 +85,9 @@ spec: | |
- name: csi-resizer | ||
image: "{{ .Values.image.csiResizer.repository }}:{{ .Values.image.csiResizer.tag }}" | ||
args: | ||
- "-csi-address=$(ADDRESS)" | ||
- "-v=5" | ||
- "-leader-election" | ||
- -csi-address=$(ADDRESS) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. doesn't it need to be double-dash ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. look at https://github.com/kubernetes-sigs/azuredisk-csi-driver for the next upgrade There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will ignore the inconsistency of the also in upstream existing arguments 🤣 ... for now 😉 |
||
- -v=5 | ||
- -leader-election | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
|
@@ -106,9 +106,9 @@ spec: | |
- name: azuredisk | ||
image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" | ||
args: | ||
- "--v=5" | ||
- "--endpoint=$(CSI_ENDPOINT)" | ||
- "--nodeid=$(KUBE_NODE_NAME)" | ||
- --v=5 | ||
- --endpoint=$(CSI_ENDPOINT) | ||
- --nodeid=$(KUBE_NODE_NAME) | ||
ports: | ||
- containerPort: 9602 | ||
name: healthz | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesn't it need to be double-dash ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look at https://github.com/kubernetes-sigs/azuredisk-csi-driver for the next upgrade
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will ignore the inconsistency of the also in upstream existing arguments 🤣 ... for now 😉