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
When managing infrastructure, it is common practice to deploy helm charts via Terraform. This is done via the helm provider inside Terraform. A deployed helm chart looks something like this
resource"helm_release""cert_manager" {
name="cert-manager"repository="https://charts.jetstack.io"chart="cert-manager"create_namespace=truenamespace="cert-manager"version="1.12.2"set {
name ="installCRDs"
value ="true"
}
}
As you can see: The current version, chart name and repository are all set here. Therefore, looking up the newest version should be possible.
I really would like to see this implemented!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When managing infrastructure, it is common practice to deploy helm charts via Terraform. This is done via the helm provider inside Terraform. A deployed helm chart looks something like this
As you can see: The current version, chart name and repository are all set here. Therefore, looking up the newest version should be possible.
I really would like to see this implemented!
https://registry.terraform.io/providers/hashicorp/helm/latest/docs
Beta Was this translation helpful? Give feedback.
All reactions