Update postgresql docs

This commit is contained in:
Tyler Perkins 2024-11-10 18:47:46 -05:00
parent fc9900fcf0
commit ccd2f19622
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8

View File

@ -10,3 +10,15 @@ One thing that is different from the vanilla install is the use of my custom
[postgresql image](https://git.clortox.com/Infrastructure/Gluttony-Cluster-Postgresql).
It just contains `pgvector`, originally for use with Immich.
## Password setup
For some reason if you pass the password you want in the environment using a sealed secret in the helm chart,
there must be some encoding thing happening or something, but it will not accept the password.
Therefore, the password is hardcoded into the chart, then updated with an alter command. Command looks something
like this.
```sql
ALTER USER postgres SET password = 'mysecurepassword'
```