Skip to content

Commit 683aa47

Browse files
authored
fix: use republished COSI controller image (#1022)
**What problem does this PR solve?**: The `gcr.io/k8s-staging-sig-storage` repository is being shut down. Temporarily moving the image until upstream moves it to a more permanent location. This pulls in the changes: - mesosphere/charts#1542 - mesosphere/charts#1543 **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. --> The e2e tests will verify the controller is running. I've also verified the image by following the examples in https://github.com/nutanix-cloud-native/cosi-driver-nutanix **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. -->
1 parent ba5ac3e commit 683aa47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/cluster-api-runtime-extensions-nutanix/templates/helm-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ data:
2525
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://kubernetes.github.io/autoscaler{{ end }}'
2626
cosi-controller: |
2727
ChartName: cosi
28-
ChartVersion: 0.0.1-alpha.2
28+
ChartVersion: 0.0.1-alpha.4
2929
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://mesosphere.github.io/charts/stable/{{ end }}'
3030
local-path-provisioner-csi: |
3131
ChartName: local-path-provisioner

hack/addons/helm-chart-bundler/repos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repositories:
3030
repoURL: https://mesosphere.github.io/charts/stable/
3131
charts:
3232
cosi:
33-
- 0.0.1-alpha.2
33+
- 0.0.1-alpha.4
3434
local-path-provisioner:
3535
repoURL: https://charts.containeroo.ch
3636
charts:

make/addons.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export KUBE_VIP_VERSION := v0.8.3
2525

2626
export METALLB_CHART_VERSION := 0.14.8
2727

28-
export COSI_CONTROLLER_VERSION := 0.0.1-alpha.2
28+
export COSI_CONTROLLER_VERSION := 0.0.1-alpha.4
2929

3030
.PHONY: addons.sync
3131
addons.sync: $(addprefix update-addon.,calico cilium nfd cluster-autoscaler snapshot-controller local-path-provisioner-csi aws-ebs-csi kube-vip)

0 commit comments

Comments
 (0)