-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues-secrets.yaml
41 lines (35 loc) · 922 Bytes
/
values-secrets.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
# This file shows the example structure of the secrets. DO NOT USE password as it is.
# Use git-secret to encrypt values-secrets.yaml might be safer.
global:
postgresql:
auth:
postgresPassword: REPLACE_ME
user: airflow
password: REPLACE_ME
airflow:
externalDatabase:
password: REPLACE_ME
# See: https://github.com/apache/druid/issues/14867
druid:
configVars:
druid_metadata_storage_connector_password: druid
kafka:
secrets:
name: r-kafka-user-passwords
username: user1
password: client-passwords
postgresql:
primary:
initdb:
scripts:
000000-user.sql: |
CREATE USER airflow WITH PASSWORD 'REPLACE_ME';
CREATE USER druid WITH PASSWORD 'druid';
CREATE USER superset WITH PASSWORD 'REPLACE_ME';
superset:
configOverrides:
secret: |
SECRET_KEY='REPLACE_ME'
postgresql:
auth:
password: REPLACE_ME