Missing Percona CRDs

Issue: Missing Percona CRDs

If you encounter an error during installation or upgrade

Error: execution error at (hcl-uno-chart/charts/uno/charts/agenticAIBuilder/templates/pg-db.yaml:3:3):
PerconaPGCluster CRD is not installed in the cluster.

It usually indicates that the required Percona PostgreSQL Operator Custom Resource Definitions (CRDs) is not installed in the Kubernetes cluster.

Solution:

To resolve this issue, install the Percona PostgreSQL Operator CRD using Helm:


helm upgrade --install pg-operator percona/pg-operator \
  --version 2.8.0 \
  -n "$NS

Replace $NS with your namespace. This ensures all necessary CRDs and resources are available.

Note:
  1. Replace <namespace> with the Kubernetes namespace where you want the components installed.
  2. The pg-operator will be installed automatically in the same namespace specified by the -n flag in the command.
  3. For other installation options, see Alternative installation methods.
  4. For more details, refer to the official Percona Helm chart documentation: https://github.com/percona/percona-helm-charts/tree/main/charts/pg-operator