Last active
October 17, 2019 13:47
-
-
Save vitkhab/6f1d10943e9231b241cda6cf5f35b26c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prometheusOperator: | |
createCustomResource: false | |
alertmanager: | |
enabled: true | |
ingress: | |
enabled: true | |
annotations: | |
kubernetes.io/ingress.class: "nginx" | |
nginx.ingress.kubernetes.io/backend-protocol: "HTTP" | |
hosts: | |
- alerts.mc.example | |
path: /?(.*) | |
alertmanagerSpec: | |
externalUrl: https://alerts.mc.example/ | |
grafana: | |
enabled: true | |
defaultDashboardsEnabled: true | |
adminPassword: admin | |
grafana.ini: | |
server: | |
root_url: https://grafana.mc.example/ | |
ingress: | |
enabled: true | |
annotations: | |
kubernetes.io/ingress.class: "nginx" | |
nginx.ingress.kubernetes.io/rewrite-target: /$1 | |
nginx.ingress.kubernetes.io/backend-protocol: "HTTP" | |
hosts: | |
- grafana.mc.example | |
path: /?(.*) | |
prometheus: | |
enabled: true | |
ingress: | |
enabled: true | |
annotations: | |
kubernetes.io/ingress.class: "nginx" | |
nginx.ingress.kubernetes.io/backend-protocol: "HTTP" | |
hosts: | |
- prometheus.mc.example | |
path: /?(.*) | |
prometheusSpec: | |
externalUrl: https://prometheus.mc.example/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment