forked from norwoodj/helm-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
32 lines (25 loc) · 873 Bytes
/
values.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
statefulset:
image:
# -- Image to use for deploying, must support an entrypoint which creates users/databases from appropriate config files
repository: jnorwood/postgresq
tag: "11"
# -- Additional volumes to be mounted into the database container
extraVolumes:
- name: data
emptyDir: {}
# -- Configure the healthcheck for the database
livenessProbe:
enabled: false
# -- The labels to be applied to instances of the database
podLabels: {}
config:
databasesToCreate:
# -- default database for storage of database metadata
- postgresql
# -- database for the [hashbash](https://github.com/norwoodj/hashbash) project
- hashbash
usersToCreate:
# -- admin user
- {name: root, admin: true}
# -- user with access to the database with the same name
- {name: hashbash, readwriteDatabases: [hashbash]}