Charmed PostgreSQL K8s Explanations - Security

Security hardening guide

This document provides an overview of security features and guidance for hardening the security of Charmed PostgreSQL K8s deployments, including setting up and managing a secure environment.

Environment

The environment where Charmed PostgreSQL K8s operates can be divided into two components:

  1. Kubernetes
  2. Juju

Kubernetes

Charmed PostgreSQL K8s can be deployed on top of several Kubernetes distributions. The following table provides references for the security documentation for the main supported cloud platforms.

Juju

Juju is the component responsible for orchestrating the entire lifecycle, from deployment to Day 2 operations. For more information on Juju security hardening, see the Juju security page and the How to harden your deployment guide.

Cloud credentials

When configuring cloud credentials to be used with Juju, ensure that users have the correct permissions to operate at the required level on the Kubernetes cluster. Juju superusers responsible for bootstrapping and managing controllers require elevated permissions to manage several kinds of resources. For this reason, the K8s user for bootstrapping and managing the deployments should have full permissions, such as:

  • create, delete, patch, and list:
    • namespaces
    • services
    • deployments
    • stateful sets
    • pods
    • PVCs

In general, it is common practice to run Juju using the admin role of K8s, to have full permissions on the Kubernetes cluster.

Juju users

It is very important that Juju users are set up with minimal permissions depending on the scope of their operations. Please refer to the User access levels documentation for more information on the access levels and corresponding abilities.

Juju user credentials must be stored securely and rotated regularly to limit the chances of unauthorized access due to credentials leakage.

Applications

In the following sections, we provide guidance on how to harden your deployment using:

  1. Base images
  2. Charmed operator security upgrades
  3. Encryption
  4. Authentication
  5. Monitoring and auditing

Base images

Charmed PostgreSQL K8s and Charmed PgBouncer K8s run on top of rockcraft-based images shipping the PostgreSQL and PgBouncer distribution binaries built by Canonical. These images (rocks) are available in a GitHub registry for PostgreSQL and PgBouncer respectively. Both images are based on Ubuntu 22.04.

Charmed operator security upgrades

Charmed PostgreSQL K8s operator and Charmed PgBouncer K8s operator install pinned versions of their respective rocks to provide reproducible and secure environments.

New versions (revisions) of the charmed operators can be released to update the operator’s code, workloads, or both. It is important to refresh the charms regularly to make sure the workloads are as secure as possible.

For more information on upgrading Charmed PostgreSQL K8s, see the How to upgrade PostgreSQL K8s and How to upgrade PgBouncer K8s guides, as well as the respective Release notes for PostgreSQL and PgBouncer.

Encryption

To utilise encryption at transit for all internal and external cluster connections, integrate Charmed PostgreSQL K8s and Charmed PgBouncer K8s with a TLS certificate provider. Please refer to the Charming Security page for more information on how to select the right certificate provider for your use case.

Encryption in transit for backups is provided by the storage service (Charmed PostgreSQL K8s is a client for an S3-compatible storage).

For more information on encryption, see the Cryptography explanation page and How to enable encryption guide.

Authentication

Charmed PostgreSQL K8s supports the password-based scram-sha-256 authentication method for authentication between:

  • External connections to clients
  • Internal connections between members of cluster
  • PgBouncer connections

For more implementation details, see the PostgreSQL documentation.

Monitoring and auditing

Charmed PostgreSQL K8s provides native integration with the Canonical Observability Stack (COS). To reduce the blast radius of infrastructure disruptions, the general recommendation is to deploy COS and the observed application into separate environments, isolated from one another. Refer to the COS production deployments best practices for more information or see the How to guides for PostgreSQL monitoring, alert rules, and tracing for practical instructions.

PostgreSQL logs are stored in /var/log/postgresql within the postgresql container of each unit. It’s recommended to integrate the charm with COS, from where the logs can be easily persisted and queried using Loki/Grafana.

Additional Resources

For details on the cryptography used by Charmed PostgreSQL K8s, see the Cryptography explanation page.