1
+ # values to emulate external secrets
2
+ secrets :
3
+ ext-mongo :
4
+ enabled : true
5
+ stringData :
6
+ mongodb-host : cf-mongodb:27017
7
+ mongodb-password : mTiXcU2wafr9
8
+ mongodb-user : cfuser
9
+ mongodb-root-user : root
10
+ mongodb-root-password : XT9nmM8dZD
11
+ ext-postgres :
12
+ enabled : true
13
+ stringData :
14
+ postgres-hostname : cf-postgresql
15
+ postgres-password : eC9arYka4ZbH
16
+ postgres-user : postgres
17
+ ext-redis :
18
+ enabled : true
19
+ stringData :
20
+ redis-url : cf-redis-master
21
+ redis-password : hoC9szf7NtrU
22
+ ext-rabbitmq :
23
+ enabled : true
24
+ stringData :
25
+ rabbitmq-hostname : cf-rabbitmq:5672
26
+ rabbitmq-password : cVz9ZdJKYm7u
27
+ rabbitmq-username : user
28
+ ext-firebase :
29
+ enabled : true
30
+ stringData :
31
+ firebase-url : " " # placeholder for ${FIRBASE_URL}
32
+ firebase-secret : " " # placeholder for ${FIREBASE_SECRET}
33
+ e2e-mongo-uri :
34
+ enabled : true
35
+ stringData :
36
+ mongo-uri : mongodb://cfuser:mTiXcU2wafr9@cf-mongodb:27017/codefresh
37
+
38
+ seed :
39
+ mongoSeedJob :
40
+ mongodbRootUserSecretKeyRef :
41
+ name : cf-codefresh-ext-mongo
42
+ key : mongodb-root-user
43
+ mongodbRootPasswordSecretKeyRef :
44
+ name : cf-codefresh-ext-mongo
45
+ key : mongodb-root-password
46
+
47
+ postgresSeedJob :
48
+ postgresUserSecretKeyRef :
49
+ name : cf-codefresh-ext-postgres
50
+ key : postgres-user
51
+ postgresPasswordSecretKeyRef :
52
+ name : cf-codefresh-ext-postgres
53
+ key : postgres-password
54
+
55
+ global :
56
+ firebaseUrlSecretKeyRef :
57
+ name : cf-codefresh-ext-firebase
58
+ key : firebase-url
59
+ firebaseSecretSecretKeyRef :
60
+ name : cf-codefresh-ext-firebase
61
+ key : firebase-secret
62
+
63
+ mongodbUserSecretKeyRef :
64
+ name : cf-codefresh-ext-mongo
65
+ key : mongodb-user
66
+ mongodbPasswordSecretKeyRef :
67
+ name : cf-codefresh-ext-mongo
68
+ key : mongodb-password
69
+ mongodbHostSecretKeyRef :
70
+ name : cf-codefresh-ext-mongo
71
+ key : mongodb-host
72
+
73
+ postgresHostnameSecretKeyRef :
74
+ name : cf-codefresh-ext-postgres
75
+ key : postgres-hostname
76
+ postgresPasswordSecretKeyRef :
77
+ name : cf-codefresh-ext-postgres
78
+ key : postgres-password
79
+ postgresUserSecretKeyRef :
80
+ name : cf-codefresh-ext-postgres
81
+ key : postgres-user
82
+
83
+ rabbitmqHostnameSecretKeyRef :
84
+ name : cf-codefresh-ext-rabbitmq
85
+ key : rabbitmq-hostname
86
+ rabbitmqPasswordSecretKeyRef :
87
+ name : cf-codefresh-ext-rabbitmq
88
+ key : rabbitmq-password
89
+ rabbitmqUsernameSecretKeyRef :
90
+ name : cf-codefresh-ext-rabbitmq
91
+ key : rabbitmq-username
92
+
93
+ redisPasswordSecretKeyRef :
94
+ name : cf-codefresh-ext-redis
95
+ key : redis-password
96
+ redisUrlSecretKeyRef :
97
+ name : cf-codefresh-ext-redis
98
+ key : redis-url
0 commit comments