Difference between revisions of "Ingress.hosts"

From wikieduonline
Jump to navigation Jump to search
 
Line 4: Line 4:
  
 
{{helm_release grafana example}}
 
{{helm_release grafana example}}
 +
 +
 +
 +
 +
 +
{{helm install grafana}}

Latest revision as of 12:47, 13 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"
 }
}



helm install grafana, values, ingress.hosts, ingress.tls

Advertising: