Difference between revisions of "Template:Helm release grafana example"

From wikieduonline
Jump to navigation Jump to search
Line 9: Line 9:
 
     name  = "[[ingress.enabled]]"
 
     name  = "[[ingress.enabled]]"
 
     value = "true"
 
     value = "true"
 +
  }
 +
  [[set_list]] {
 +
    name  = "ingress.hosts"
 +
    value = ["example.com"]
 
   }
 
   }
 
  }
 
  }

Revision as of 13:42, 12 February 2024

resource "helm_release" "grafana" {
 name             = "grafana"
 create_namespace = true
 namespace        = "grafana"
 repository       = "https://grafana.github.io/helm-charts"
 chart            = "grafana"

 set {
   name  = "ingress.enabled"
   value = "true"
 }
 set_list {
   name  = "ingress.hosts"
   value = ["example.com"]
 }
}

Advertising: