Skip to content

Commit 08a7f8d

Browse files
Merge pull request #17037 from mrsiano/grafana
Automatic merge from submit-queue. Introduce custom Grafana for openshift prometheus. A template creates a custom Grafana instance preconfigured to gather Prometheus openshift metrics. It uses OAuth token to login openshift Prometheus.
2 parents 02c0979 + ca061f2 commit 08a7f8d

File tree

2 files changed

+103
-0
lines changed

2 files changed

+103
-0
lines changed

examples/grafana/README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# grafana-ocp
2+
3+
This template creates a custom Grafana instance preconfigured to gather Prometheus openshift metrics.
4+
It is uses OAuth token to login openshift Prometheus.
5+
6+
7+
## To deploy grafana
8+
Note: make sure to have openshift prometheus deployed.
9+
(https://github.com/openshift/origin/tree/master/examples/prometheus)
10+
11+
1. ```oc create namespace grafana```
12+
2. ```oc new-app -f grafana-ocp.yaml```
13+
3. grab the grafana url ``` oc get route |awk 'NR==2 {print $2}' ```
14+
4. grab the ocp token, from openshift master run: ```oc sa get-token prometheus -n kube-system```
15+
5. browse to grafana datasource's and add new prometheus datasource.
16+
6. grab the prometheus url via ```oc get route -n kube-system prometheus |awk 'NR==2 {print $2}'``` and paste the prometheus url e.g https://prometheus-kube-system.apps.example.com
17+
7. paste the token string at the token field.
18+
8. checkout the TLS checkbox.
19+
9. save & test and make sure all green.
20+
21+
### Pull standalone docker grafana instance
22+
to build standalone docker instance see
23+
https://github.com/mrsiano/grafana-ocp
24+
25+
#### Resources
26+
- example video https://youtu.be/srCApR_J3Os
27+
- deploy openshift prometheus https://github.com/openshift/origin/tree/master/examples/prometheus

examples/grafana/grafana-ocp.yaml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
---
2+
kind: Template
3+
apiVersion: v1
4+
metadata:
5+
name: grafana-ocp
6+
annotations:
7+
"openshift.io/display-name": Grafana ocp
8+
description: |
9+
Grafana server with patched Prometheus datasource.
10+
iconClass: icon-cogs
11+
tags: "metrics,monitoring,grafana,prometheus"
12+
parameters:
13+
- description: External URL for the grafana route
14+
name: ROUTE_URL
15+
value: ""
16+
- description: The namespace to instantiate heapster under. Defaults to 'grafana'.
17+
name: NAMESPACE
18+
value: grafana
19+
objects:
20+
- apiVersion: route.openshift.io/v1
21+
kind: Route
22+
metadata:
23+
name: grafana-ocp
24+
namespace: "${NAMESPACE}"
25+
spec:
26+
host: "${ROUTE_URL}"
27+
to:
28+
name: grafana-ocp
29+
- apiVersion: v1
30+
kind: Service
31+
metadata:
32+
name: grafana-ocp
33+
namespace: "${NAMESPACE}"
34+
labels:
35+
metrics-infra: grafana-ocp
36+
name: grafana-ocp
37+
spec:
38+
selector:
39+
name: grafana-ocp
40+
ports:
41+
- port: 8082
42+
protocol: TCP
43+
targetPort: grafana-http
44+
- apiVersion: v1
45+
kind: ReplicationController
46+
metadata:
47+
name: grafana-ocp
48+
namespace: "${NAMESPACE}"
49+
labels:
50+
metrics-infra: grafana-ocp
51+
name: grafana-ocp
52+
spec:
53+
selector:
54+
name: grafana-ocp
55+
replicas: 1
56+
template:
57+
version: v1
58+
metadata:
59+
labels:
60+
metrics-infra: grafana-ocp
61+
name: grafana-ocp
62+
spec:
63+
volumes:
64+
- name: data
65+
emptyDir: {}
66+
containers:
67+
- image: "mrsiano/grafana-ocp:latest"
68+
name: grafana-ocp
69+
ports:
70+
- name: grafana-http
71+
containerPort: 3000
72+
volumeMounts:
73+
- name: data
74+
mountPath: "/root/go/src/github.com/grafana/grafana/data"
75+
command:
76+
- "./bin/grafana-server"

0 commit comments

Comments
 (0)