Skip to content

Instantly share code, notes, and snippets.

@mr-pascal
Created November 26, 2022 13:55
Show Gist options
  • Save mr-pascal/2a4e39cc57f247726d2f4c41e6c7c62c to your computer and use it in GitHub Desktop.
Save mr-pascal/2a4e39cc57f247726d2f4c41e6c7c62c to your computer and use it in GitHub Desktop.
provider "helm" {
kubernetes {
host = "https://${google_container_cluster.primary.endpoint}"
token = data.google_client_config.default.access_token
}
}
resource "helm_release" "example" {
name = "my-local-chart"
chart = "./helm"
depends_on = [
google_container_cluster.primary
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment