Skip to content

Commit 3ba8d4e

Browse files
committed
Expose grafana dashboard in k8s cluster
1 parent 0a8a154 commit 3ba8d4e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: extensions/v1beta1
2+
kind: Ingress
3+
metadata:
4+
name: grafana
5+
namespace: monitoring
6+
labels:
7+
app: grafana
8+
annotations:
9+
certmanager.k8s.io/cluster-issuer: letsencrypt-prod
10+
nginx.ingress.kubernetes.io/proxy-body-size: "0"
11+
spec:
12+
tls:
13+
- hosts:
14+
- metrics.chime-live-cluster.phl.io
15+
secretName: tls-secret
16+
rules:
17+
- host: metrics.chime-live-cluster.phl.io
18+
http:
19+
paths:
20+
- path: /
21+
backend:
22+
serviceName: grafana
23+
servicePort: 3000

0 commit comments

Comments
 (0)