-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: list correct registry.k8s.io/sig-storage/csi-snapshotter image (#…
…943) **What problem does this PR solve?**: The current process returns an incorrect image `registry.k8s.io/sig-storage/csi-snapshotter:v3.0.3` From the CSI helm chart, we need to set this capability `snapshot.storage.k8s.io/v1` to get the correct image. ``` snapshotter: image: registry.k8s.io/sig-storage/csi-snapshotter:v6.3.3 imageBeta: registry.k8s.io/sig-storage/csi-snapshotter:v3.0.3 ``` ``` {{- if .Capabilities.APIVersions.Has "snapshot.storage.k8s.io/v1" }} image: {{ .Values.sidecars.snapshotter.image }} {{- else }} image: {{ .Values.sidecars.snapshotter.imageBeta }} {{- end }} ``` Ran this locally: ``` make list-images | grep "registry.k8s.io/sig-storage/csi-snapshotter" registry.k8s.io/sig-storage/csi-snapshotter:v6.3.3 ``` **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
- Loading branch information
Showing
3 changed files
with
173 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.