Files
speckle-server/tests/deployment/helm/values/postgres.values.yaml
T
Iain Sproat b08331b3d2 ci(deployment test): bitnami helm charts should now use bitnamilegacy image repository (#5479)
* ci(deployment test): use bitnamilegacy image repository

* pin valkey & minio to bitnamilegacy

* global.security.allowInsecureImages

* re-require test-deployments

* update additional minio image repository

* Update more image repositories

* version 12 of minio is being deployed and has slightly different config
2025-09-17 18:00:29 +01:00

47 lines
1.4 KiB
YAML

image:
repository: bitnamilegacy/postgresql
debug: true
volumePermissions:
enabled: true
image:
repository: bitnamilegacy/os-shell
metrics:
image:
repository: bitnamilegacy/postgres-exporter
primary:
auth:
username: postgres
password: postgres
database: postgres
persistence:
enabled: true
existingClaim: postgres-pvc
initdb:
scripts:
00_speckleserver_database.sql: |
-- Speckle
CREATE USER speckle WITH PASSWORD 'speckle';
CREATE DATABASE speckle
WITH
OWNER = speckle;
GRANT ALL PRIVILEGES ON DATABASE speckle TO speckle;
GRANT ALL ON SCHEMA public TO speckle;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO speckle;
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO speckle;
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT ALL PRIVILEGES ON TABLES TO speckle;
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO speckle;
-- End Speckle
-- Speckle Server Tests
CREATE DATABASE speckle2_test
WITH
OWNER = speckle
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
-- End Speckle Server Tests
global:
security:
allowInsecureImages: true # needed for bitnamilegacy images