* Implemented user registration and login * Implemented JWT creation and verification * Implemented several dummy API endpoints * Define env vars in helm values.yaml file * Label resources in Tilt * Created crude react frontend for testing register / login functionality
20 lines
444 B
YAML
20 lines
444 B
YAML
replicaCount: 1
|
|
|
|
postgresql:
|
|
fullnameOverride: 'postgresql'
|
|
postgresqlUsername: 'postgres' # todo: manage as a secret using vault
|
|
postgresqlPassword: 'password' # todo: manage as a secret using vault
|
|
persistence:
|
|
enabled: true
|
|
volumePermissions:
|
|
enabled: true
|
|
replication:
|
|
enabled: false
|
|
initdbScripts:
|
|
psql.sql: |
|
|
# PSQL COMMANDS HERE;
|
|
|
|
serviceAccount:
|
|
create: true
|
|
annotations: {}
|
|
name: "postgresql" |