Skip to content

Commit

Permalink
feat(helm): enable ingress for grafana
Browse files Browse the repository at this point in the history
Signed-off-by: Byeonghoon Yoo <[email protected]>
  • Loading branch information
isac322 committed Jan 4, 2024
1 parent db796c7 commit 7e73b5a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions values/kube-prometheus-stack/backbone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,40 +41,40 @@ grafana:
ingress:
## If true, Grafana Ingress will be created
##
enabled: false
enabled: true

## IngressClassName for Grafana Ingress.
## Should be provided if Ingress is enable.
##
# ingressClassName: nginx
ingressClassName: traefik

## Annotations for Grafana Ingress
##
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"

## Labels to be added to the Ingress
##
labels: {}
annotations:
external-dns.alpha.kubernetes.io/cloudflare-proxied: "false"
cert-manager.io/cluster-issuer: cluster-issuer-acme
cert-manager.io/private-key-algorithm: ECDSA
cert-manager.io/private-key-size: '384'
traefik.ingress.kubernetes.io/router.entrypoints: websecure

## Hostnames.
## Must be provided if Ingress is enable.
##
# hosts:
# - grafana.domain.com
hosts: []
hosts:
- grafana.bhyoo.com

## Path for grafana ingress
path: /

## TLS configuration for grafana Ingress
## Secret must be manually created in the namespace
##
tls: []
# - secretName: grafana-general-tls
# hosts:
# - grafana.example.com
tls:
- secretName: grafana-general-tls
hosts:
- grafana.bhyoo.com

sidecar:
dashboards:
Expand Down

0 comments on commit 7e73b5a

Please sign in to comment.