Helm charts to install the following Operators:
-
EDB Postgres for Kubernetes operator (PG4K), designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, or hybrid cloud environments. Derived from CloudNativePG's Helm chart.
-
EDB Postgres Distributed for Kubernetes (PG4K-PGD), designed by EnterpriseDB to manage EDB Postgres Distributed v5 workloads on Kubernetes, with traffic routed by PGD Proxy.
Before deploying the charts, add the following repository by running:
helm repo add edb https://enterprisedb.github.io/edb-postgres-for-kubernetes-charts/
You can then run helm search repo edb
to see the all the available charts.
Both the operator and the operand images required by PG4K may be
pulled from the k8s_enterprise
or k8s_standard
repositories at
docker.enterprisedb.com
, available with an EDB subscription plan.
See: obtaining an EDB subscription token
By default, the chart will try to pull the operator image from k8s_enterprise
.
To do that, you need to configure the chart to pull images from a private
registry (this works similarly in case you want to host the operator images in
your own private registry).
For example, to deploy via the k8s_enterprise
repository:
helm upgrade --install edb-pg4k \
--namespace postgresql-operator-system \
--create-namespace \
--set image.imageCredentials.username=k8s_enterprise \
--set image.imageCredentials.password=<THE-TOKEN> \
edb/edb-postgres-for-kubernetes
Note: If instead you want to deploy using the
k8s_standard
repository, you can do that by adjusting the following settings in the above example:
- Set
image.repository
todocker.enterprisedb.com/k8s_standard/edb-postgres-for-kubernetes
- Set
image.imageCredentials.username
tok8s_standard
This will create a deployment in the postgresql-operator-system
namespace.
You can check it's ready:
$ kubectl get deployments -n postgresql-operator-system
NAME READY UP-TO-DATE AVAILABLE AGE
edb-pg4k-edb-postgres-for-kubernetes 1/1 1 1 11s
Once it is ready, you can verify that you can deploy the sample cluster suggested by the helm chart.
It is possible to limit the operator's capabilities to solely the namespace in which it has been installed. With this restriction, the cluster-level permissions required by the operator will be substantially reduced, and the security profile of the installation will be enhanced.
You can install the operator in single-namespace mode by setting the
config.clusterWide
flag to false, as in the following example:
helm upgrade --install edb-pg4k \
--namespace postgresql-operator-system \
--create-namespace \
--set config.clusterWide=false \
--set image.imageCredentials.username=k8s_enterprise \
--set image.imageCredentials.password=<THE-TOKEN> \
edb/edb-postgres-for-kubernetes
IMPORTANT: the single-namespace installation mode can't coexist with the cluster-wide operator. Otherwise there would be collisions when managing the resources in the namespace watched by the single-namespace operator. It is up to the user to ensure there is no collision between operators.
Similar to the PG4K helm chart installation, both the operator and the operand images
required by edb-postgres-distributed-for-kubernetes
may be pulled from the
k8s_enterprise_pgd
or k8s_standard_pgd
repositories at docker.enterprisedb.com
,
available with an EDB subscription plan.
The PG4K-PGD chart installs both the PG4K-PGD and PG4K operators in the same namespace. The PG4K operator installed is a stable version that is part of the latest long-term support release of PG4K.
The PG4K-PGD chart also install the cert-manager operator as a dependency. You can avoid this if necessary. See the sub-section on deploying individually.
Note: This helm chart uses a default registry to retrieve the operator
images: docker.enterprisedb.com/k8s_enterprise_pgd
.
If you want to use another registry, you'll need to set it explicitly.
For more information please see the section
on controlling the image repositories.
Note: You will need credentials to retrieve the various
operator and operand images. Make sure to replace USERNAME and PASSWORD with
your own credentials in the command below, which uses the k8s_enterprise_pgd
image registry by default:
helm upgrade --dependency-update \
--install edb-pg4k-pgd \
--namespace pgd-operator-system \
--create-namespace \
--set image.imageCredentials.username=${USERNAME} \
--set image.imageCredentials.password=${PASSWORD} \
edb/edb-postgres-distributed-for-kubernetes
Once the above runs, a new namespace pgd-operator-system
will be
created, with several deployments, including the two operators.
$ kubectl get deployments -n pgd-operator-system
NAME READY UP-TO-DATE AVAILABLE AGE
edb-pg4k-pgd-cert-manager 1/1 1 1 7m46s
edb-pg4k-pgd-cert-manager-cainjector 1/1 1 1 7m46s
edb-pg4k-pgd-cert-manager-webhook 1/1 1 1 7m46s
edb-pg4k-pgd-edb-postgres-distributed-for-kubernetes 1/1 1 1 7m46s
edb-pg4k-pgd-edb-postgres-for-kubernetes-lts 1/1 1 1 7m46s
When the deployments are ready, you can verify that the steps suggested by the helm chart are working:
- set up a cert-manager issuer
- deploy an example 3-region PGD cluster
The chart edb-postgres-distributed-for-kubernetes
is set by default to
also install the cert-manager operator, which it depends on.
When following this route, all operators will be installed in the same
namespace. This is in contrast with other installation paths, where we
may want the two operators reside in dedicated namespaces.
Installing all dependencies in the same namespace is a design limitation of
Helm, but we can get around it by installing dependencies with separate
invocations of helm
.
If you would like to install the cert-manager in a separate namespace, please follow the steps below.
EDB Postgres Distributed for Kubernetes requires Cert Manager 1.10 or higher.
Note: In case a supported version of the cert-manager operator is already deployed in your K8S setup, you can skip this section and go directly to the setup of PG4K-PGD.
To deploy cert-manager in its own namespace
$ helm repo add jetstack https://charts.jetstack.io &&
helm upgrade --install cert-manager jetstack/cert-manager \
--create-namespace \
--namespace cert-manager \
--version "v1.16.1" \
--set installCRDs=true \
--wait
In case you choose this option, remember to also specify
--set cert-manager.enabled=false
during the installation of the PG4K-PGD
helm chart in the next section.
Once the above deployments are ready, you can deploy the PG4K-PGD helm chart taking care
to set cert-manager.enabled
to false if cert-manager is installed separately.
Note: In the following example, the flags setting the credentials were elided
to put the focus on the enabled=false
condition. The flags may still be
necessary, unless the credentials are provided in the values.yaml
file.
helm upgrade --dependency-update \
--install edb-pg4k-pgd \
--namespace pgd-operator-system \
--create-namespace \
--set cert-manager.enabled=false \
edb/edb-postgres-distributed-for-kubernetes
You should now have a seperate namespace for each operator:
$ kubectl get ns
NAME STATUS AGE
…
cert-manager Active 24m
pgd-operator-system Active 55s
The various operator and operand images necessary for PGD may be pulled
from a variety of repositories. This helm chart uses k8s_enterprise_pgd
as the default repository. If you want to use another, you will need to
fill in the image registry and the credentials, according to your
subscription plan. This needs to be done in several places in the command-line
invocation.
The following example uses the k8s_standard_pgd
registry in
docker.enterprisedb.com
. Following is the description of set options.
global.repository
: The repository where the operator and operand image are downloaded from. This is a global setting, which is shared for both PG4K-PGD and PG4K operators and pgd operands.
Assuming that you have your necessary credentials, please fill in the USERNAME and PASSWORD below.
helm upgrade --dependency-update \
--install edb-pg4k-pgd \
--namespace pgd-operator-system \
--create-namespace \
--set image.imageCredentials.username=${USERNAME} \
--set image.imageCredentials.password=${PASSWORD} \
--set global.repository=docker.enterprisedb.com/k8s_standard_pgd \
edb/edb-postgres-distributed-for-kubernetes
If we want to use a different flavor or a different version of PGD image, we can set the following two global options, for each helm chart release:
pgdImageName
: the PGD image name to be used by the operator. PGD image (with this name) will be pulled fromglobal.repository
;proxyImageName
: the PGD proxy image name to be used by the operator. PGD proxy image (with this name) will be pulled fromglobal.repository
.
PGD and PGD proxy are upgraded to the latest well-tested versions. By default, the PGD image here is using postgresql-pgd.
This example uses the edb-postgres-advanced-pgd
PGD images.
helm upgrade --dependency-update \
--install edb-pg4k-pgd \
--namespace pgd-operator-system \
--create-namespace \
--set image.imageCredentials.username=${USERNAME} \
--set image.imageCredentials.password=${PASSWORD} \
--set global.pgdImageName=edb-postgres-advanced-pgd:16.4.1-5.5.1-1 \
--set global.proxyImageName=edb-pgd-proxy:5.5.0 \
edb/edb-postgres-distributed-for-kubernetes
To deploy an operator from source, first clone the current repository locally and then run the following command: (Example for EDB-PG4K)
helm upgrade --install edb-pg4k \
--namespace postgresql-operator-system \
--create-namespace \
charts/edb-postgres-for-kubernetes
Navigate to the charts directory of local chart or source code, To deploy PG4K-PGD with all dependencies together
helm upgrade --install edb-pg4k-pgd \
--namespace pgd-operator-system \
--create-namespace \
--set image.imageCredentials.username=${USERNAME} \
--set image.imageCredentials.password=${PASSWORD} \
charts/edb-postgres-distributed-for-kubernetes
To deploy the PG4K LTS subchart separately in a different namespace.
helm upgrade --install edb-pg4k-lts \
--namespace postgresql-operator-system \
--create-namespace \
--set image.imageCredentials.create=true \
--set image.imageCredentials.username=${USERNAME} \
--set image.imageCredentials.password=${PASSWORD} \
charts/edb-postgres-distributed-for-kubernetes/charts/edb-postgres-for-kubernetes-lts
and then deploy the PG4K-PGD chart with edb-postgres-for-kubernetes-lts.enabled=false
set.
helm upgrade --install edb-pg4k-pgd \
--namespace pgd-operator-system \
--create-namespace \
--set image.imageCredentials.username=${USERNAME} \
--set image.imageCredentials.password=${PASSWORD} \
--set edb-postgres-for-kubernetes-lts.enabled=false \
charts/edb-postgres-distributed-for-kubernetes
Note: The image locations are elided. Please refer to the sections above for directions.
If you update the version of the dependency charts and want to install from
source, remember to run helm dependency update
and helm dependency build
in
the chart directory before installing from the source.
edb-postgres-for-kubernetes-charts
is distributed under Apache License 2.0.
IMPORTANT: Both the operators and the operand images are distributed
under different license terms, in particular the EDB Postgres for Kubernetes operator
and the EDB Postgres Distributed for Kubernetes operator
are distributed under the
EnterpriseDB Limited Use License.
Copyright (C) 2021 EnterpriseDB Corporation.