Configuring external access to the Plan PostgreSQL database
You can configure external PostgreSQL access during installation by using a Helm upgrade.
About this task
Procedure
-
Use the following options with the Helm install or Helm Upgrade command:
--set hcl-devopsplan-prod.postgresql.enableExternalAccess=true \ --set hcl-devopsplan-prod.postgresql.service.exportPort=30106 -
Use the following details to connect to the PostgreSQL database:
-
Host:
global.domain -
Port:
30106 -
Database:
postgres -
Username:
postgres
-
-
Run the following command to retrieve the password:
kubectl get secret --namespace devops-loop devopsplan-postgresql \ -o jsonpath="{.data.tenant-datastore-password}" | base64 -d; echoNote:You must ensure the namespace is set todevops-loop.