Helm
Installing Crunchy Postgres for Kubernetes Using Helm
This section provides instructions for installing and configuring Crunchy Postgres for Kubernetes using Helm.
There are two sources for the Crunchy Postgres for Kubernetes Helm chart:
- the Postgres Operator examples repo;
- the Helm chart hosted on the Crunchy container registry, which supports direct Helm installs.
The Postgres Operator Examples repo
Prerequisites
First, go to GitHub and fork the Postgres Operator examples repository, which contains the Crunchy Postgres for Kubernetes Helm installer.
https://github.com/CrunchyData/postgres-operator-examples/fork
Once you have forked this repo, you can download it to your working environment with a command similar to this:
YOUR_GITHUB_UN="$YOUR_GITHUB_USERNAME"
git clone --depth 1 "git@github.com:${YOUR_GITHUB_UN}/postgres-operator-examples.git"
cd postgres-operator-examples
For Powershell environments:
$env:YOUR_GITHUB_UN="YOUR_GITHUB_USERNAME"
git clone --depth 1 "git@github.com:$env:YOUR_GITHUB_UN/postgres-operator-examples.git"
cd postgres-operator-examples
The Crunchy Postgres for Kubernetes Helm chart is located in the helm/install
directory of this repository.
Configuration
The values.yaml
file for the Helm chart contains all of the available configuration settings for Crunchy Postgres for Kubernetes. The default values.yaml
settings should work in most Kubernetes environments, but it may require some customization depending on your specific environment and needs.
For instance, it might be necessary to customize the image tags that are utilized using the controllerImages
setting:
controllerImages:
cluster: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.6.2-0
Please note that the values.yaml
file is located in helm/install
.
Logging
By default, Crunchy Postgres for Kubernetes deploys with debug logging turned on. If you wish to disable this, you need to set the debug
attribute in the values.yaml
to false, e.g.:
debug: false
Installation Mode
When Crunchy Postgres for Kubernetes is installed, it can be configured to manage PostgreSQL clusters in all namespaces within the Kubernetes cluster, or just those within a single namespace. When managing PostgreSQL clusters in all namespaces, a ClusterRole and ClusterRoleBinding is created to ensure Crunchy Postgres for Kubernetes has the permissions it requires to properly manage PostgreSQL clusters across all namespaces. However, when Crunchy Postgres for Kubernetes is configured to manage PostgreSQL clusters within a single namespace only, a Role and RoleBinding is created instead.
In order to select between these two modes when installing Crunchy Postgres for Kubernetes using Helm, the singleNamespace
setting in the values.yaml
file can be utilized:
singleNamespace: false
Specifically, if this setting is set to false
(which is the default), then a ClusterRole and ClusterRoleBinding will be created, and Crunchy Postgres for Kubernetes will manage PostgreSQL clusters in all namespaces. However, if this setting is set to true
, then a Role and RoleBinding will be created instead, allowing Crunchy Postgres for Kubernetes to only manage PostgreSQL clusters in the same namespace utilized when installing the Crunchy Postgres for Kubernetes Helm chart.
Install
Once you have configured the Helm chart according to your specific needs, it can then be installed using helm
:
helm install $NAME -n $NAMESPACE helm/install
Automated Upgrade Checks
By default, Crunchy Postgres for Kubernetes will automatically check for updates to itself and software components by making a request to a URL. If Crunchy Postgres for Kubernetes detects there are updates available, it will print them in the logs. As part of the check, Crunchy Postgres for Kubernetes will send aggregated, anonymized information about the current deployment to the endpoint. An upcoming release will allow for Crunchy Postgres for Kubernetes to opt-in to receive and apply updates to software components automatically.
Crunchy Postgres for Kubernetes will check for updates upon startup and once every 24 hours. Any errors in checking will have no impact on the operation of Crunchy Postgres for Kubernetes. To disable the upgrade check, you can set the disable_check_for_upgrades
value in the Helm chart to true
.
For more information about collected data, see the Crunchy Data collection notice.
Uninstall
To uninstall Crunchy Postgres for Kubernetes, remove all your PostgresCluster objects, then use the helm uninstall
command:
helm uninstall $NAME -n $NAMESPACE
Helm [leaves the CRDs][helm-crd-limits] in place. You can remove them with kubectl delete
:
kubectl delete -f helm/install/crds
The Crunchy Container Registry
Installing directly from the registry
Crunchy Data hosts an OCI registry that helm
can use directly. (Not all helm
commands support OCI registries. For more information on which commands can be used, see the Helm documentation.)
You can install Crunchy Postgres for Kubernetes directly from the registry using the helm install
command:
helm install pgo oci://registry.developers.crunchydata.com/crunchydata/pgo
Or to see what values are set in the default values.yaml
before installing, you could run a helm show
command just as you would with any other registry:
helm show values oci://registry.developers.crunchydata.com/crunchydata/pgo
Downloading from the registry
Rather than deploying directly from the Crunchy registry, you can instead use the registry as the source for the Helm chart.
To do so, download the Helm chart from the Crunchy Container Registry:
# To pull down the most recent Helm chart
helm pull oci://registry.developers.crunchydata.com/crunchydata/pgo
# To pull down a specific Helm chart
helm pull oci://registry.developers.crunchydata.com/crunchydata/pgo --version 5.6.2
Once the Helm chart has been downloaded, uncompress the bundle
tar -xvf pgo-5.6.2.tgz
And from there, you can follow the instructions above on setting the Configuration and installing a local Helm chart.
Next Step: Create a Postgres Cluster
Now that you've installed Crunchy Postgres for Kubernetes, you're ready to Create a Postgres Cluster.
Next Step: Install Monitoring
No installation of Crunchy Postgres for Kubernetes is complete without monitoring! See our Tutorial on installing monitoring with Helm for details.