Skip to content

Commit 995c8e7

Browse files
committed
Add minio and postgres config for Creance
1 parent c7c4152 commit 995c8e7

3 files changed

Lines changed: 41 additions & 1 deletion

File tree

helm/qs-minio/values.yaml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,22 @@ minio-pharia-finetuning:
8585
## @param auth.existingSecretUserKey Key in existing secret containing username
8686
existingSecretUserKey: "user"
8787
## @param auth.existingSecretPasswordKey Key in existing secret containing password
88-
existingSecretPasswordKey: "password"
88+
existingSecretPasswordKey: "password"
89+
90+
minio-creance:
91+
enabled: false
92+
fullnameOverride: qs-minio-creance
93+
## @section Bucket provisioning
94+
## @param defaultBuckets Comma, semi-colon or space separated list of buckets to create at initialization
95+
## Format: "bucket-name" or "bucket-name:policy" where policy can be: none, download, upload, or public
96+
## e.g: "my-bucket, my-second-bucket:download, my-public-bucket:public"
97+
defaultBuckets: "creance"
98+
auth:
99+
## @param auth.existingSecret Name of existing secret containing MinIO credentials
100+
existingSecret: "qs-minio-access-creance"
101+
## @param auth.username Username put in existing secret
102+
user: "creance"
103+
## @param auth.existingSecretUserKey Key in existing secret containing username
104+
existingSecretUserKey: "user"
105+
## @param auth.existingSecretPasswordKey Key in existing secret containing password
106+
existingSecretPasswordKey: "password"

helm/qs-postgresql-cluster/values.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,16 @@ clusterPharia:
242242
login: true
243243
superuser: false
244244
replication: false
245+
- name: "creance"
246+
connectionLimit: -1
247+
ensure: present
248+
inherit: true
249+
# `password` and `username` key should exist in secret. username key should be the name of the user (mlflow)
250+
passwordSecret:
251+
name: "qs-postgresql-cluster-access-creance"
252+
login: true
253+
superuser: false
254+
replication: false
245255
backups:
246256
# -- You need to configure backups manually, so backups are disabled by default.
247257
enabled: false

helm/qs-postgresql-db/values.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,3 +375,15 @@ databases:
375375
- pg_stat_statements
376376
- pg_trgm
377377
- btree_gin
378+
379+
- name: "creance"
380+
enabled: false
381+
cluster: "qs-postgresql-cluster-pharia"
382+
owner: "creance"
383+
connectionLimit: 50
384+
extensions:
385+
- uuid-ossp
386+
- pgcrypto
387+
- pg_stat_statements
388+
- pg_trgm
389+
- btree_gin

0 commit comments

Comments
 (0)