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
In the use case is having databases (or any resource that you might not want to re-start the pod of) as helm_release you want to prevent pod restarts and yet change certain values.
Ability to ignore specific set blocks is essential.
Potential Terraform Configuration
resource"helm_release""postgresql" {
chart="postgresql"repository="https://charts.bitnami.com/bitnami"name="default"namespace="default"# you want to set this once and maintain this after without having to re-start any podset {
name ="primary.initdb.scripts"
value = var.initdb_scripts
}
lifecycle {
ignore_changes=[set[name["primary.initdb.scripts].value].0] }}
Description
In the use case is having databases (or any resource that you might not want to re-start the pod of) as helm_release you want to prevent pod restarts and yet change certain values.
Ability to ignore specific set blocks is essential.
Potential Terraform Configuration
References
Similar conversation:
hashicorp/terraform#26359 (comment)
Community Note
The text was updated successfully, but these errors were encountered: