This repository contains a Juju Charm for deploying PostgreSQL on virtual machines (LXD). To deploy on Kubernetes, please use Charmed PostgreSQL K8s Operator.
This operator provides a PostgreSQL database with replication enabled: one primary instance and one (or more) hot standby replicas. The Operator in this repository is a Python script which wraps PostgreSQL versions distributed by Ubuntu Jammy series and adding Patroni on top of it, providing lifecycle management and handling events (install, configure, integrate, remove, etc).
- Basic usage: Deploy and scale Charmerd PostgreSQL
- Integrations: Supported interfaces for integrations
- Contributing
- Licensing and trademark
Bootstrap a lxd controller and create a new Juju model:
juju add-model sample-model
To deploy a single unit of PostgreSQL using its default configuration, run the following command:
juju deploy postgresql --channel 14/stable
It is customary to use PostgreSQL with replication to ensure high availability. A replica is equivalent to a juju unit.
To deploy PostgreSQL with multiple replicas, specify the number of desired units with the -n
option:
juju deploy postgresql --channel 14/stable -n <number_of_units>
To add replicas to an existing deployment, see the Add replicas section.
Tip
It is generally recommended to have an odd number of units to avoid a "split-brain" scenario
To retrieve the primary replica, use the action get-primary
on any of the units running PostgreSQL.
juju run postgresql/leader get-primary
Similarly, the primary replica is displayed as a status message in juju status
. Note that this hook gets called at regular time intervals, so the primary may be outdated if the status hook has not been called recently.
To add more replicas one can use the juju add-unit
functionality i.e.
juju add-unit postgresql -n <number_of_units_to_add>
The implementation of add-unit
allows the operator to add more than one unit, but functions internally by adding one replica at a time. This is done to avoid multiple replicas syncing from the primary at the same time.
To scale down the number of replicas the juju remove-unit
functionality may be used i.e.
juju remove-unit postgresql <name_of_unit_1> <name_of_unit_2>
The implementation of remove-unit
allows the operator to remove more than one unit. The functionality of remove-unit
functions by removing one replica at a time to avoid downtime.
To rotate the password of users internal to the Charmed PostgreSQL operator, use the set-password
action as follows:
juju run postgresql/leader set-password username=<user> password=<password>
Note
Currently, internal users are operator
, replication
, backup
and rewind
. These users should not be used outside the operator.
To rotate the passwords of users created for integrated applications, the integration to Charmed PostgreSQL should be removed and re-created. This process will generate a new user and password for the application (and remove the old user).
Supported integrations:
Current charm relies on Data Platform libraries. Your
application should define an interface in metadata.yaml
:
requires:
database:
interface: postgresql_client
Please read the usage documentation of the data_interfaces library for more information about how to enable a PostgreSQL interface in your application.
Relations to new applications are supported via the postgresql_client
interface. To create a
relation to another application:
juju v2.x
:
juju relate postgresql <application_name>
juju v3.x
:
juju integrate postgresql <application_name>
To remove a relation:
juju remove-relation postgresql <application_name>
We have also added support for the two database legacy relations from the original version of the charm via the pgsql
interface. Please note that these relations will be deprecated.
juju relate postgresql:db mailman3-core
juju relate postgresql:db-admin landscape-server
The Charmed PostgreSQL Operator also supports TLS encryption on internal and external connections. Below is an example of enabling TLS with the self-signed certificates charm.
# Deploy the self-signed certificates TLS operator.
juju deploy self-signed-certificates --config ca-common-name="Example CA"
# Enable TLS via relation.
juju integrate postgresql self-signed-certificates
# Disable TLS by removing relation.
juju remove-relation postgresql self-signed-certificates
Warning
The TLS settings shown here are for self-signed-certificates, which are not recommended for production clusters. See the guide Security with X.509 certificates for an overview of available certificates charms.
Security issues in the Charmed PostgreSQL Operator can be reported through LaunchPad. Please do not use GitHub to submit security issues.
- For best practices on how to write and contribute to charms, see the Juju SDK docs
- For more specific developer guidance for contributions to Charmed PostgreSQL, see the file CONTRIBUTING.md
- Report security issues for the Charmed PostgreSQL Operator through LaunchPad.
- Report technical issues, bug reports and feature requests through the GitHub Issues tab.
The Charmed PostgreSQL Operator is distributed under the Apache Software License, version 2.0. It installs, operates and depends on PostgreSQL, which is licensed under the PostgreSQL License, a liberal Open Source license similar to the BSD or MIT licenses.
PostgreSQL is a trademark or registered trademark of PostgreSQL Global Development Group. Other trademarks are property of their respective owners.