We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Terraform version: 1.10.1 Provider version: 2.16.1 Kubernetes version: 1.30.6
resource "helm_release" "mariadb_galera" { name = "mariadb-galera-${var.name}" repository = "https://charts.bitnami.com/bitnami" chart = "mariadb-galera" version = "14.1.0" namespace = module.k8s_namespace.namespace }
https://gist.github.com/vfouqueron/f7f9915bd74cdfd476a20182197b4ff6
terraform apply
The helm chart is upgraded to the desired versions
A invalid_reference: invalid tag error appears
Was working fine until recently, but it is now broken for all helm_release resource I use
The text was updated successfully, but these errors were encountered:
I had the same problem related to: https://blog.bitnami.com/2024/10/bitnami-helm-charts-moving-to-oci.html Solunion is to change: repository = "https://charts.bitnami.com/bitnami" to repository = "oci://registry-1.docker.io/bitnamicharts"
Sorry, something went wrong.
As @kfkawalec has pointed out, this is because bitnami has switched to OCI for their charts. See here:
bitnami/charts#30110
jrhouston
No branches or pull requests
Terraform, Provider, Kubernetes and Helm Versions
Affected Resource(s)
Terraform Configuration Files
Debug Output
https://gist.github.com/vfouqueron/f7f9915bd74cdfd476a20182197b4ff6
Steps to Reproduce
terraform apply
Expected Behavior
The helm chart is upgraded to the desired versions
Actual Behavior
A invalid_reference: invalid tag error appears
Important Factoids
Was working fine until recently, but it is now broken for all helm_release resource I use
Community Note
The text was updated successfully, but these errors were encountered: