forked from mrsiano/openshift-grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-grafana.sh
executable file
·117 lines (102 loc) · 3.76 KB
/
setup-grafana.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
setoauth=0
node_exporter=0
datasource_name=''
prometheus_namespace=''
sa_reader=''
graph_granularity=''
yaml=''
protocol="https://"
while getopts 'n:s:p:g:y:ae' flag; do
case "${flag}" in
n) datasource_name="${OPTARG}" ;;
s) sa_reader="${OPTARG}" ;;
p) prometheus_namespace="${OPTARG}" ;;
g) graph_granularity="${OPTARG}" ;;
y) yaml="${OPTARG}" ;;
a) setoauth=1 ;;
e) node_exporter=1;;
*) error "Unexpected option ${flag}" ;;
esac
done
usage() {
echo "
USAGE
setup-grafana.sh -n <datasource_name> -a [optional: -p <prometheus_namespace> -s <prometheus_serviceaccount> -g <graph_granularity> -y <yaml> -e]
switches:
-n: grafana datasource name
-s: prometheus serviceaccount name
-p: existing prometheus name e.g openshift-metrics
-g: specifiy granularity
-y: specifies the grafana yaml
-a: deploy oauth proxy for grafana - otherwise skip it (for preconfigured deployment)
-e: deploy node exporter
note:
- the project must have view permissions for kube-system
- the script allow to use high granularity by adding '30s' arg, but it needs tuned scrape prometheus
"
exit 1
}
get::namespace(){
if [ -z "$(oc projects |grep openshift-monitoring)" ]; then
prometheus_namespace="openshift-monitoring"
else
prometheus_namespace="openshift-metrics"
fi
}
set::oauth() {
touch -a /etc/origin/master/htpasswd
htpasswd /etc/origin/master/htpasswd grafana
sed -ie 's|AllowAllPasswordIdentityProvider|HTPasswdPasswordIdentityProvider\n file: /etc/origin/master/htpasswd|' /etc/origin/master/master-config.yaml
oc adm policy add-cluster-role-to-user cluster-reader grafana
systemctl restart atomic-openshift-master-api.service
}
# deploy node exporter
node::exporter(){
oc annotate ns kube-system openshift.io/node-selector= --overwrite
sed -i.bak "s/Xs/${graph_granularity}/" "${dashboard_file}"
sed -i.bak "s/\${DS_PR}/${datasource_name}/" "${dashboard_file}"
curl --insecure -H "Content-Type: application/json" -u admin:admin "${grafana_host}/api/dashboards/db" -X POST -d "@./node-exporter-full-dashboard.json"
mv "${dashboard_file}.bak" "${dashboard_file}"
}
[[ -n ${datasource_name} ]] || usage
[[ -n ${sa_reader} ]] || sa_reader="prometheus-reader"
[[ -n ${prometheus_namespace} ]] || get::namespace
[[ -n ${graph_granularity} ]] || graph_granularity="2m"
# TODO: replace with link to origin/examples
[[ -n ${yaml} ]] || yaml="grafana.yaml"
((setoauth)) && set::oauth || echo "skip oauth"
oc new-project grafana
oc process -f "${yaml}" |oc create -f -
oc rollout status deployment/grafana
oc adm policy add-role-to-user view -z grafana -n "${prometheus_namespace}"
payload="$( mktemp )"
cat <<EOF >"${payload}"
{
"name": "${datasource_name}",
"type": "prometheus",
"typeLogoUrl": "",
"access": "proxy",
"url": "https://$( oc get route prometheus-k8s -n "${prometheus_namespace}" -o jsonpath='{.spec.host}' )",
"basicAuth": false,
"withCredentials": false,
"jsonData": {
"tlsSkipVerify":true,
"httpHeaderName1":"Authorization"
},
"secureJsonData": {
"httpHeaderValue1":"Bearer $( oc sa get-token "${sa_reader}" -n "${prometheus_namespace}" )"
}
}
EOF
# setup grafana data source
grafana_host="${protocol}$( oc get route grafana -o jsonpath='{.spec.host}' )"
curl --insecure -H "Content-Type: application/json" -u admin:admin "${grafana_host}/api/datasources" -X POST -d "@${payload}"
# deploy openshift dashboard
dashboard_file="./openshift-cluster-monitoring.json"
sed -i.bak "s/Xs/${graph_granularity}/" "${dashboard_file}"
sed -i.bak "s/\${DS_PR}/${datasource_name}/" "${dashboard_file}"
curl --insecure -H "Content-Type: application/json" -u admin:admin "${grafana_host}/api/dashboards/db" -X POST -d "@${dashboard_file}"
mv "${dashboard_file}.bak" "${dashboard_file}"
((node_exporter)) && node::exporter || echo "skip node exporter"
exit 0