-
Notifications
You must be signed in to change notification settings - Fork 807
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
Arm overlay #653
Arm overlay #653
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,7 +122,6 @@ spec: | |
- --csi-address=$(ADDRESS) | ||
- --v=5 | ||
- --leader-election=true | ||
- --leader-election-type=leases | ||
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. we don't need this because the default changed to leases right? just checking 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. or they removed the option an dit's leases only? 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. Yeah they removed it and it's leases. |
||
env: | ||
- name: ADDRESS | ||
value: /var/lib/csi/sockets/pluginproxy/csi.sock | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
bases: | ||
- ../../../base | ||
images: | ||
- name: k8s.gcr.io/provider-aws/aws-ebs-csi-driver | ||
newTag: v0.8.0 | ||
- name: quay.io/k8scsi/csi-provisioner | ||
newName: raspbernetes/csi-external-provisioner | ||
newTag: "1.6.0" | ||
- name: quay.io/k8scsi/csi-attacher | ||
newName: raspbernetes/csi-external-attacher | ||
newTag: "2.2.0" | ||
- name: quay.io/k8scsi/livenessprobe | ||
newName: k8s.gcr.io/sig-storage/livenessprobe | ||
newTag: "v2.1.0" | ||
- name: quay.io/k8scsi/csi-node-driver-registrar | ||
newName: raspbernetes/csi-node-driver-registrar | ||
newTag: "1.3.0" |
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.
did you test the helm install /kustomize command? like if I have helm installed a prevoius version them helm install this version, i would assume that helm is smart enough to delete/recreate this object.