Skip to content

Instantly share code, notes, and snippets.

@kubaracek
Created July 20, 2020 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kubaracek/11271ed1d319fae536a2cd743c9ff77b to your computer and use it in GitHub Desktop.
Save kubaracek/11271ed1d319fae536a2cd743c9ff77b to your computer and use it in GitHub Desktop.
resource "helm_release" "smaply" {
name = "smaply-${var.name_suffix}"
chart = "${path.module}/files/charts/smaply"
namespace = var.namespace
timeout = 600
wait = true
set {
name = "smaply.host"
value = var.host
}
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment