commit
This commit is contained in:
parent
0a1e661591
commit
3f94def624
|
|
@ -3,7 +3,7 @@ apiVersion: v1
|
|||
kind: ConfigMap
|
||||
metadata:
|
||||
name: grafana
|
||||
namespace: monitoring
|
||||
namespace: grafana
|
||||
labels:
|
||||
helm.sh/chart: grafana-8.10.0
|
||||
app.kubernetes.io/name: grafana
|
||||
|
|
@ -24,4 +24,10 @@ data:
|
|||
plugins = /var/lib/grafana/plugins
|
||||
provisioning = /etc/grafana/provisioning
|
||||
[server]
|
||||
domain = ''
|
||||
domain = ''
|
||||
[theme]
|
||||
default_them = light
|
||||
[auth.anonymous]
|
||||
enabled = true
|
||||
org_name = Main Org.
|
||||
org_role = Viewer
|
||||
|
|
|
|||
|
|
@ -0,0 +1,22 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: prometheus-alertmanager-ingress
|
||||
namespace: monitoring
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: alert.gpulive.nhncloud.com
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
service:
|
||||
name: prometheus-alertmanager
|
||||
port:
|
||||
number: 9093
|
||||
path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- alert.gpulive.nhncloud.com
|
||||
secretName: gpulive-new-ssl
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: prometheus-ingress
|
||||
namespace: monitoring
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: prometheus.gpulive.nhncloud.com
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
service:
|
||||
name: prometheus-server
|
||||
port:
|
||||
number: 80
|
||||
path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- prometheus.gpulive.nhncloud.com
|
||||
secretName: gpulive-new-ssl
|
||||
|
|
@ -6,7 +6,7 @@ metadata:
|
|||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: alert.nhngpuaas.com
|
||||
- host: alert.gpulive.nhncloud.com
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
|
|
@ -18,5 +18,5 @@ spec:
|
|||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- alert.nhngpuaas.com
|
||||
secretName: nhngpuaas-ssl
|
||||
- alert.gpulive.nhncloud.com
|
||||
secretName: gpulive-new-ssl
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ metadata:
|
|||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: prometheus.nhngpuaas.com
|
||||
- host: prometheus.gpulive.nhncloud.com
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
|
|
@ -18,5 +18,5 @@ spec:
|
|||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- prometheus.nhngpuaas.com
|
||||
secretName: nhngpuaas-ssl
|
||||
- prometheus.gpulive.nhncloud.com
|
||||
secretName: gpulive-new-ssl
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ spec:
|
|||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
storageClassName: nfs-client
|
||||
storageClassName: user-nas
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
|
|
|
|||
Loading…
Reference in New Issue