You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently working on deploying secrets-store-csi-driver-provider-gcp using Helm in Terraform. However, I've encountered an issue while trying to fetch the Helm chart. I attempted to use the GitHub repository as the chart source, but Helm seems to be unable to recognize it. The specific error message I'm encountering is:
Error: looks like "https://github.com/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp/tree/main/charts" is not a valid chart repository or cannot be reached: failed to fetch https://github.com/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp/tree/main/charts/index.yaml : 404 Not Found
Question
I'm currently working on deploying secrets-store-csi-driver-provider-gcp using Helm in Terraform. However, I've encountered an issue while trying to fetch the Helm chart. I attempted to use the GitHub repository as the chart source, but Helm seems to be unable to recognize it. The specific error message I'm encountering is:
Here is my terraform resource:
name = "secrets-store-csi-driver-provider-gcp" namespace = "kube-system" chart = "secrets-store-csi-driver-provider-gcp" repository = "https://github.com/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp/tree/main/charts" version = "1.4.0" cleanup_on_fail = true values = [ <<-EOT tolerations: - operator: "Exists" EOT ] depends_on = [helm_release.secrets_store_csi_driver] }
Any help allowing me to install secrets-store-csi-driver-provider-gcp with helm chart will be much appreciated.
The text was updated successfully, but these errors were encountered: