Charmed PostgreSQL K8s

Channel Revision Published Runs on
latest/stable 20 20 Sep 2022
Ubuntu 20.04
14/stable 382 11 Sep 2024
Ubuntu 22.04
14/stable 381 11 Sep 2024
Ubuntu 22.04
14/candidate 382 09 Sep 2024
Ubuntu 22.04
14/candidate 381 09 Sep 2024
Ubuntu 22.04
14/beta 382 09 Sep 2024
Ubuntu 22.04
14/beta 381 09 Sep 2024
Ubuntu 22.04
14/edge 386 11 Sep 2024
Ubuntu 22.04
14/edge 385 11 Sep 2024
Ubuntu 22.04
juju deploy postgresql-k8s --channel 14/stable
Show information

Platform:

Note: All commands are written for juju >= v.3.0

If you are using an earlier version, check the Juju 3.0 Release Notes.

How to manage client applications

Integrations (formerly “relations”) are connections between two applications with compatible endpoints. These connections simplify the creation and management of users, passwords, and other shared data.

Create an integration

Integrations with new applications are supported via the postgresql_client interface.

To create an integration, run

juju integrate postgresql-k8s application

To remove an integration:

juju remove-relation postgresql-k8s application

Legacy pgsql interface

We have also added support for the database legacy relation from the original version of the charm via the pgsql interface. Note that this interface is deprecated.

juju integrate postgresql-k8s:db mattermost-k8s:db

Extended permissions can be requested using the db-admin endpoint:

juju integrate postgresql-k8s:db-admin mattermost-k8s:db

Rotate application passwords

To rotate the passwords of users created for integrated applications, the integration should be removed and integrated again. This process will generate a new user and password for the application.

juju remove-relation application postgresql-k8s
juju add-relation application postgresql-k8s

Internal operator user

The operator user is used internally by the Charmed PostgreSQL K8s Operator. The set-password action can be used to rotate its password.

To set a specific password for the operator user, run

juju run postgresql-k8s/leader set-password password=<password>

To randomly generate a password for the operator user, run

juju run postgresql-k8s/leader set-password

Help improve this document in the forum (guidelines). Last updated 3 months ago.