File tree 3 files changed +36
-1
lines changed
3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : oopsdb
3
3
description : A Helm chart to deploy the demo services for OopsDB
4
4
type : application
5
- version : 0.1.0
5
+ version : 0.1.1
6
6
appVersion : " 1.1.5"
7
7
dependencies :
8
8
- name : postgres-operator
Original file line number Diff line number Diff line change 27
27
limits :
28
28
cpu : " 4"
29
29
memory : 8Gi
30
+ podAnnotations :
31
+ coroot.com/postgres-scrape : " false"
32
+ coroot.com/postgres-scrape-credentials-secret-name : coroot.odb-postgres.credentials.postgresql.acid.zalan.do
33
+ coroot.com/postgres-scrape-credentials-secret-username-key : username
34
+ coroot.com/postgres-scrape-credentials-secret-password-key : password
35
+ coroot.com/postgres-scrape-param-sslmode : require
Original file line number Diff line number Diff line change @@ -13,8 +13,25 @@ mysql:
13
13
database : " app"
14
14
createDatabase : true
15
15
existingSecret : " {{ .Release.Name }}-mysql-secret"
16
+ primary :
17
+ podAnnotations :
18
+ coroot.com/mysql-scrape : " true"
19
+ coroot.com/mysql-scrape-port : " 3306"
20
+ coroot.com/mysql-scrape-credentials-username : " root"
21
+ coroot.com/mysql-scrape-credentials-secret-name : " {{ .Release.Name }}-mysql-secret"
22
+ coroot.com/mysql-scrape-credentials-secret-password-key : " mysql-root-password"
23
+ secondary :
24
+ podAnnotations :
25
+ coroot.com/mysql-scrape : " true"
26
+ coroot.com/mysql-scrape-port : " 3306"
27
+ coroot.com/mysql-scrape-credentials-username : " root"
28
+ coroot.com/mysql-scrape-credentials-secret-name : " {{ .Release.Name }}-mysql-secret"
29
+ coroot.com/mysql-scrape-credentials-secret-password-key : " mysql-root-password"
16
30
17
31
mongodb :
32
+ podAnnotations :
33
+ coroot.com/mongodb-scrape : " true"
34
+ coroot.com/mongodb-scrape-port : " 27017"
18
35
architecture : replicaset
19
36
auth :
20
37
enabled : false
@@ -23,15 +40,27 @@ mongodb:
23
40
livenessProbe :
24
41
enabled : false
25
42
43
+ memcached :
44
+ podAnnotations :
45
+ coroot.com/memcached-scrape : " true"
46
+ coroot.com/memcached-scrape-port : " 11211"
47
+
26
48
redis :
27
49
architecture : standalone
28
50
auth :
29
51
enabled : false
30
52
master :
53
+ podAnnotations :
54
+ coroot.com/redis-scrape : " true"
55
+ coroot.com/redis-scrape-port : " 6379"
31
56
persistence :
32
57
enabled : true
33
58
34
59
35
60
36
61
37
62
63
+
64
+
65
+
66
+
You can’t perform that action at this time.
0 commit comments