Files
connected-home/helm/postgresql/values.yaml
Steve Sampson c62467417f Refactor Repo
Completed:

* Use Axum + Tower
* Setup metrics w/Prometheus & Grafana
* Setup distributed tracing w/OTLP exporter + Tempo
* Enable MQTT on RabbitMQ
* Add compatibility for docker-compose
* Update all dependencies
* Create Config Files
* Clean handling of tasks
* Migrate from Diesel ORM to SQLX

TODO:
* Fix Tilt K8S setup
* Consider Tilt docker file
2023-08-30 22:45:20 -03:00

48 lines
919 B
YAML

replicaCount: 1
fullnameOverride: 'postgresql'
image:
registry: docker.io
repository: bitnami/postgresql
tag: 15.4.0-debian-11-r10
digest: ""
pullPolicy: IfNotPresent
pullSecrets: []
debug: false
global:
imageRegistry: ""
imagePullSecrets: []
storageClass: ""
postgresql:
auth: # todo: manage secrets using vault
postgresPassword: "password"
username: ""
password: ""
database: ""
existingSecret: ""
secretKeys:
adminPasswordKey: ""
userPasswordKey: ""
replicationPasswordKey: ""
service:
ports:
postgresql: ""
serviceAccount:
create: true
name: "postgresql"
automountServiceAccountToken: true
annotations: {}
architecture: standalone
containerPorts:
postgresql: 5432
shmVolume:
enabled: true
sizeLimit: ""
postgresqlDataDir: /bitnami/postgresql/data
postgresqlSharedPreloadLibraries: "pgaudit"