registry="docker.enterprisedb.com" username="pgai-platform" password="" echo "Enter the password for ${username}@${registry}" read -s password if [ -z "$password" ]; then echo 1>&2 "Error: password is required" >&2 echo 1>&2 usage exit 1 fi kubectl create namespace edb-hcp-operator-system helm repo add enterprisedb-edbpgai "https://downloads.enterprisedb.com/${password}/${RELEASE}pgai-platform/helm/charts/" helm repo update kubectl create secret docker-registry edb-hcp-operator-pull-secret \ --docker-server="${registry}" \ --docker-username="${RELEASE}${username}" \ --docker-password="${password}" \ --namespace edb-hcp-operator-system helm upgrade \ -n edb-hcp-operator-system \ --install \ --set "imagePullSecrets[0].name=edb-hcp-operator-pull-secret" \ --set controllerManager.manager.image.tag=$OPERATOR_VERSION \ --set controllerManager.manager.image.repository=docker.enterprisedb.com/${RELEASE}pgai-platform/edb-hcp-operator/manager \ --version $OPERATOR_VERSION \ edb-hcp-operator enterprisedb-edbpgai/edb-hcp-operator