Skip to content

Commit 5a1f4a1

Browse files
committed
monitoring: run grafana service on port 80
1 parent 241bca4 commit 5a1f4a1

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

monitoring/ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
paths:
1717
- backend:
1818
serviceName: grafana
19-
servicePort: 3000
19+
servicePort: 80
2020
path: /
2121
tls:
2222
- hosts:

monitoring/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ patches:
99
- container-images.patch.yaml
1010
- cluster-wide.patch.yaml
1111
- grafana-dashboards.patch.yaml
12+
- ports.patch.yaml
1213
configMapGenerator:
1314
- name: grafana-dashboard-argocd
1415
options:

monitoring/ports.patch.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
name: grafana
5+
namespace: monitoring
6+
spec:
7+
ports:
8+
- name: http
9+
port: 80
10+
targetPort: http

0 commit comments

Comments
 (0)