Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 714 Bytes

File metadata and controls

31 lines (22 loc) · 714 Bytes

Deploy Postgres

To install a PostgreSQL database in kubernetes simply run:

    helm install -n postgres --namespace infrabox-system --set postgresPassword=qweasdzxc1,postgresUser=infrabox,postgresDatabase=infrabox stable/postgresql

This is not meant for production

When configuring the InfraBox installation with helm use these options:

database:
    postgres:
        enabled: true

        # Host of your postgres database
        host: postgres-postgresql.infrabox-system

        # Port of your postgres database
        port: 5432

        # Database name
        db: infrabox

        # Username
        username: infrabox

        # Password
        password: qweasdzxc1