Charmed PostgreSQL K8s

Channel Revision Published Runs on
latest/stable 20 20 Sep 2022
Ubuntu 20.04
14/stable 445 12 Nov 2024
Ubuntu 22.04
14/stable 444 12 Nov 2024
Ubuntu 22.04
14/candidate 382 09 Sep 2024
Ubuntu 22.04
14/candidate 381 09 Sep 2024
Ubuntu 22.04
14/beta 453 14 Nov 2024
Ubuntu 22.04
14/beta 452 14 Nov 2024
Ubuntu 22.04
14/edge 460 Today
Ubuntu 22.04
14/edge 459 Today
Ubuntu 22.04
juju deploy postgresql-k8s --channel 14/stable
Show information

Platform:

Charmed PostgreSQL K8s Tutorial > 2. Deploy PostgreSQL

Deploy Charmed PostgreSQL K8s

In this section, you will deploy a postgresql-k8s application to your juju model and track its status.

Summary


Deploy PostgreSQL

To deploy Charmed PostgreSQL K8s, run

juju deploy postgresql-k8s --trust

--trust is required because the charm and Patroni need to create some K8s resources.

Juju will now fetch Charmed PostgreSQL K8s from Charmhub and deploy it to the local MicroK8s. This process can take several minutes depending on how provisioned (RAM, CPU, etc) your machine is.

Track application status

You can track the deployment by running:

juju status --watch 1s

This command is useful for checking the real-time information about the state of a charm and the machines hosting it. Check the juju status documentation for more information about its usage.

When the application is ready, juju status will show something similar to the sample output below:

Model     Controller  Cloud/Region        Version  SLA          Timestamp
tutorial  charm-dev   microk8s/localhost  2.9.42   unsupported  12:00:43+01:00

App             Version  Status  Scale  Charm           Channel    Rev  Address         Exposed  Message
postgresql-k8s           active      1  postgresql-k8s  14/stable  56   10.152.183.167  no

Unit               Workload  Agent  Address       Ports  Message
postgresql-k8s/0*  active    idle   10.1.188.206

You can also watch juju logs with the juju debug-log command. More info on logging in the juju logs documentation.

Next step: 3. Access PostgreSQL


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