Difference between revisions of "Template:Helm release grafana"

From wikieduonline
Jump to navigation Jump to search
(Created page with " resource "helm_release" "grafana" { name = "grafana" create_namespace = true namespace = "grafana" repository = "https://grafana.github.io/he...")
 
 
Line 1: Line 1:
resource "helm_release" "grafana" {
+
{{helm release grafana example}}
  name            = "grafana"
 
  create_namespace = true
 
  namespace        = "grafana"
 
  repository      = "https://grafana.github.io/helm-charts"
 
  chart            = "grafana"
 
 
  set {
 
    name  = "[[ingress.enabled]]"
 
    value = "true"
 
  }
 
}
 

Latest revision as of 13:13, 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"]
 }
 set {
   name  = "ingress.ingressClassName"
   value = "nginx"
 }
 set {
   name  = "ingress.tls"
   value = "true"
 }
}

Advertising: