-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Labels
questionFurther information is requestedFurther information is requested
Description
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:
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
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.
Roymprog, lbernick, nikolaik, Guent4, rorynickolls-skyral and 2 more
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested