Top
Enterprise Postgres 18 for Kubernetes User's Guide

3.2.1 Deploying Operator

  1. Add a Helm Chart repository for the operator.

    helm repo add fep-repo https://fujitsu.github.io/fep-operator-helm/v1
  2. Create a namespace to install the operator.

    kubectl create namespace fep-operator

    Note

    Operator installation needs Prometheus to be installed in the Kubernetes cluster in advance.

  3. Run the helm command to install the operator.

    To install the NamespaceScope Operator, run the following Helm command:

    helm install fep-operator-release fep-repo/fujitsu-enterprise-postgres-operator --namespace fep-operator

    When installing the ClusterScope Operator, create the values.yaml file and then run the Helm command to install the operator.

    In values.yaml, set the multiNamespace option to true.

    multiNamespace: true

    When executing the helm install command, specify the created values.yaml file to install the Operator.

    helm install fep-operator-release fep-repo/fujitsu-enterprise-postgres-operator --namespace fep-operator -f values.yaml