Skip to content

Helm chart for v1.25.1 is missing in the Helm repository #1802

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

Closed
Kaushik-Vaibhav opened this issue Jan 22, 2025 · 3 comments · Fixed by #1803 or #1804
Closed

Helm chart for v1.25.1 is missing in the Helm repository #1802

Kaushik-Vaibhav opened this issue Jan 22, 2025 · 3 comments · Fixed by #1803 or #1804

Comments

@Kaushik-Vaibhav
Copy link

I am trying to install the Azure Blob CSI Driver version v1.25.1 using Helm, but the corresponding Helm chart is not available in the repository.

Steps I followed:

  1. Added the Helm repository: https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts
  2. Updated the repository: helm repo update
  3. Tried installing helm chart:
~/blob-csi-driver$ helm install blob-csi-driver blob-csi-driver/blob-csi-driver --set node.enableBlobfuseProxy=true --set controller.replicas=1 --namespace kube-system --version v1.25.1
WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: /export/home/delphix/.kube/config
Error: INSTALLATION FAILED: repo blob-csi-driver not found

  1. Searched for the available charts using helm search repo blob-csi-driver.
~/blob-csi-driver$ helm search repo -l blob-csi-driver

NAME                           	CHART VERSION	APP VERSION	DESCRIPTION
blob-csi-driver/blob-csi-driver	1.25.0       	1.25.0     	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.24.5      	v1.24.5    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.24.3      	v1.24.3    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.24.2      	v1.24.2    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.24.1      	v1.24.1    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.24.0      	v1.24.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.9      	v1.23.9    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.7      	v1.23.7    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.4      	v1.23.4    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.3      	v1.23.3    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.2      	v1.23.2    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.1      	v1.23.1    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.23.0      	v1.23.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.9      	v1.22.9    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.8      	v1.22.8    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.6      	v1.22.6    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.5      	v1.22.5    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.4      	v1.22.4    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.3      	v1.22.3    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.2      	v1.22.2    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.22.1      	v1.22.1    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.21.7      	v1.21.7    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.21.6      	v1.21.6    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.21.5      	v1.21.5    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.21.4      	v1.21.4    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.20.3      	v1.20.3    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.19.6      	v1.19.6    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.19.5      	v1.19.5    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.18.0      	v1.18.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.17.0      	v1.17.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.16.0      	v1.16.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.15.0      	v1.15.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.14.0      	v1.14.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.13.0      	v1.13.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.12.0      	v1.12.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.11.0      	v1.11.0    	Azure Blob Storage CSI driver
blob-csi-driver/blob-csi-driver	v1.10.0      	v1.10.0    	Azure Blob Storage CSI driver

The latest available chart version is v1.25.0, but the v1.25.1 release notes indicate Helm support.

Could you please confirm if the chart is yet to be published or if there’s something I'm missing?

@andyzhangx
Copy link
Member

can you use helm install blob-csi-driver blob-csi-driver/blob-csi-driver --set node.enableBlobfuseProxy=true --set controller.replicas=1 --namespace kube-system --version 1.25.1 ?

@Kaushik-Vaibhav
Copy link
Author

Kaushik-Vaibhav commented Jan 23, 2025

I'm getting an error when trying to install the latest chart

~$ helm install blob-csi-driver blob-csi-driver/blob-csi-driver --set node.enableBlobfuseProxy=true --set controller.replicas=1 --namespace kube-system --version 1.25.1
Error: INSTALLATION FAILED: chart "blob-csi-driver" matching 1.25.1 not found in blob-csi-driver index. (try 'helm repo update'): no chart version found for blob-csi-driver-1.25.1

@andyzhangx andyzhangx mentioned this issue Jan 23, 2025
4 tasks
@andyzhangx
Copy link
Member

it works now

# helm install blob-csi-driver blob-csi-driver/blob-csi-driver --set node.enableBlobfuseProxy=true --namespace kube-system --version 1.25.0
NAME: blob-csi-driver
LAST DEPLOYED: Thu Jan 23 12:13:54 2025
NAMESPACE: kube-system
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
The Azure Blob Storage CSI driver is getting deployed to your cluster.

To check Azure Blob Storage CSI driver pods status, please run:

  kubectl --namespace=kube-system get pods --selector="app.kubernetes.io/name=blob-csi-driver" --watch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants