This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
grafana.yaml
71 lines (68 loc) · 1.56 KB
/
grafana.yaml
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
---
apiVersion: v1
kind: Secret
metadata:
name: grafana-secrets
type: Opaque
stringData:
database-con: postgres://grafana:test-grafana-password@timescale:5432/grafana
admin-pw: verryStrongPassword
---
apiVersion: v1
kind: Service
metadata:
name: grafana-http
spec:
selector:
app: grafana
ports:
- protocol: TCP
port: 3000
nodePort: 30975
name: http-grafana
type: NodePort
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: grafana
labels:
app: grafana
spec:
replicas: 1
selector:
matchLabels:
app: grafana
template:
metadata:
labels:
app: grafana
spec:
containers:
- name: grafana
image: grafana/grafana:6.3.3
env:
- name: GF_SECURITY_ADMIN_USER
value: "admin"
- name: GF_INSTALL_PLUGINS
value: "grafana-clock-panel,grafana-simple-json-datasource"
- name: GF_DATABASE_TYPE
value: "postgres"
- name: GF_REMOTE_CACHE_TYPE
value: database
- name: GF_DATABASE_SSL_MODE
value: disable
- name: GF_DATABASE_URL
valueFrom:
secretKeyRef:
name: grafana-secrets
key: database-con
- name: GF_SECURITY_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
name: grafana-secrets
key: admin-pw
ports:
- containerPort: 3000
protocol: TCP
name: http-grafana