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
resource"helm_release""example" {
name="my-redis-release"repository="https://charts.bitnami.com/bitnami"chart="redis"version="6.0.1"values=[
"${file("values.yaml")}"
]
set {
name ="cluster.enabled"
value ="true"
}
set {
name ="metrics.enabled"
value ="true"
}
set {
name ="service.annotations.prometheus\\.io/port"
value ="9127"
type ="string"
}
}
output"metadata" {
value=helm_release.example.metadata
}
Debug Output
NOTE: In addition to Terraform debugging, please set HELM_DEBUG=1 to enable debugging info from helm.
Panic Output
Steps to Reproduce
create new helm release
terraform apply
change values or release version
terraform apply
Notice the metadata output is from the prior apply. If we run apply again, it will show the newer metadata.
Terraform, Provider, Kubernetes and Helm Versions
Affected Resource(s)
Terraform Configuration Files
Debug Output
NOTE: In addition to Terraform debugging, please set HELM_DEBUG=1 to enable debugging info from helm.
Panic Output
Steps to Reproduce
terraform apply
terraform apply
Notice the metadata output is from the prior apply. If we run
apply
again, it will show the newer metadata.Expected Behavior
Actual Behavior
Important Factoids
References
Community Note
The text was updated successfully, but these errors were encountered: