tryretool / retool-helm

MIT License
45 stars 57 forks source link

update default postgres credentials #90

Closed BenjamynBaker closed 1 year ago

BenjamynBaker commented 1 year ago

This pg subchart currently doesn't work with the default credentials. The subchart exposes secret keys postgres-password (for root user) and password (for non-root user), and our deployment templates currently consumes the root user password. This change switches the user retool uses to be the root pg user, and explicitly sets the root password instead of having it randomly generated.

Alternatively, we could change the template to consume the non-root user password but this seems less invasive.