Changeset 0.9.4 (#54)

This commit is contained in:
2026-02-24 10:44:12 +00:00
parent 90021157e6
commit 5e416d3726
26 changed files with 1333 additions and 108 deletions

View File

@@ -5,6 +5,7 @@
# Secrets:
# switchboard-db-credentials - POSTGRES_USER, POSTGRES_PASSWORD
# switchboard-admin - username, password, email (optional)
# switchboard-encryption - ENCRYPTION_KEY (required for v0.9.4+)
#
# Admin bootstrap: on every pod start, if SWITCHBOARD_ADMIN_* env vars
# are set, the backend upserts an admin user. Change the secret and
@@ -89,6 +90,12 @@ spec:
name: switchboard-seed-users
key: users
optional: true
- name: ENCRYPTION_KEY
valueFrom:
secretKeyRef:
name: switchboard-encryption
key: ENCRYPTION_KEY
optional: true
resources:
requests:
memory: "${BE_MEMORY_REQUEST}"