PostgreSQL Installation with Helm: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 21: | Line 21: | ||
==Dependent Chart values.yaml== | ==Dependent Chart values.yaml== | ||
===Setting a Non-Default Master User=== | |||
The default [[PostgreSQL_Concepts#Master_User|master user]] is "postgres" and setting the password for it can be achieved with: | |||
<syntaxhighlight lang='yaml'> | |||
postgresql: | |||
postgresqlUsername: 'postgres' # this is the default | |||
postgresqlPassword: 'something' | |||
</syntaxhighlight> | |||
<syntaxhighlight lang='yaml'> | |||
postgresql: | |||
postgresqlUsername: 'postgres' # this is the default | |||
postgresqlPassword: 'something' | |||
</syntaxhighlight> |
Revision as of 00:31, 21 November 2020
External
- https://github.com/bitnami/charts/tree/master/bitnami/postgresql ← https://github.com/helm/charts/tree/master/stable/postgresql
- https://github.com/bitnami/bitnami-docker-postgresql
- https://hub.docker.com/r/bitnami/postgresql/
Internal
Overview
This document refers to the chart downloaded from the Helm stable repository https://github.com/helm/charts/tree/master/stable. Installation documentation for the chart is available in the README.md contained within the chart's archive.
Procedure
Configuration
Dependent Chart values.yaml
Setting a Non-Default Master User
The default master user is "postgres" and setting the password for it can be achieved with:
postgresql:
postgresqlUsername: 'postgres' # this is the default
postgresqlPassword: 'something'
postgresql:
postgresqlUsername: 'postgres' # this is the default
postgresqlPassword: 'something'