When deploying VIP AuthHub in an OpenShift cluster, is it possible to specify two nodes of an Oracle database in the JDBC Url?
VIP Authentication Hub 3.2
Openshift
Below is the sample command to deploy AuthHub with two nodes of Oracle DB:
helm upgrade "${RELEASENAME}" -n "${NAMESPACE}" "${HELM_REPO}/ssp" \
--version "${SSP_VERSION}" \
--set ssp.deployment.size="custom" \
--set hazelcast-enterprise.cluster.memberCount=1 \
--set ssp.db.connection.type="oracle" \
--set ssp.db.jdbcUrl='jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=OFF)(FAILOVER=ON)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<server name_1>)(PORT=<port number>))(ADDRESS=(PROTOCOL=TCP)
(HOST=<server name_2>)(PORT=<port number>)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=<service name>)))' \
--timeout=20m \
-f values.yaml