Path: blob/main/L4assets/DSandMLOpsAssets/Installation/cpd_vars.sh
1928 views
#===============================================================================1# IBM Software Hub installation variables2#===============================================================================3# ------------------------------------------------------------------------------4# Client workstation5# ------------------------------------------------------------------------------6# Set the following variables if you want to override the default behavior of the IBM Software Hub CLI.7#8# To export these variables, you must uncomment each command in this section.9# export CPD_CLI_MANAGE_WORKSPACE=<enter a fully qualified directory>10# export OLM_UTILS_LAUNCH_ARGS=<enter launch arguments>11# ------------------------------------------------------------------------------12# Cluster13# ------------------------------------------------------------------------------14export OCP_URL=<Enter your own value>15export OPENSHIFT_TYPE=self-managed16export IMAGE_ARCH=amd6417export OCP_USERNAME=<Enter your own value>18export OCP_PASSWORD=<Enter your own value>19# export OCP_TOKEN=<enter your token>20export SERVER_ARGUMENTS="--server=${OCP_URL}"21export LOGIN_ARGUMENTS="--username=${OCP_USERNAME} --password=${OCP_PASSWORD}"22# export LOGIN_ARGUMENTS="--token=${OCP_TOKEN}"23export CPDM_OC_LOGIN="cpd-cli manage login-to-ocp ${SERVER_ARGUMENTS} ${LOGIN_ARGUMENTS}"24export OC_LOGIN="oc login ${SERVER_ARGUMENTS} ${LOGIN_ARGUMENTS}"25# ------------------------------------------------------------------------------26# Proxy server27# ------------------------------------------------------------------------------28# export PROXY_HOST=<enter your proxy server hostname>29# export PROXY_PORT=<enter your proxy server port number>30# export PROXY_USER=<enter your proxy server username>31# export PROXY_PASSWORD=<enter your proxy server password>32# ------------------------------------------------------------------------------33# Projects34# ------------------------------------------------------------------------------35export PROJECT_CERT_MANAGER=ibm-cert-manager36export PROJECT_LICENSE_SERVICE=ibm-licensing37export PROJECT_SCHEDULING_SERVICE=ibm-cpd-scheduler38# export PROJECT_IBM_EVENTS=<enter your IBM Events Operator project>39export PROJECT_PRIVILEGED_MONITORING_SERVICE=ibm-cpd-privileged40export PROJECT_CPD_INST_OPERATORS=softwarehub-operators41export PROJECT_CPD_INST_OPERANDS=softwarehub-services42# export PROJECT_CPD_INSTANCE_TETHERED=<enter your tethered project>43# export PROJECT_CPD_INSTANCE_TETHERED_LIST=<a comma-separated list of tethered projects>44# ------------------------------------------------------------------------------45# Storage46# ------------------------------------------------------------------------------47export STG_CLASS_BLOCK=ocs-storagecluster-ceph-rbd48export STG_CLASS_FILE=ocs-storagecluster-cephfs49# ------------------------------------------------------------------------------50# IBM Entitled Registry51# ------------------------------------------------------------------------------52export IBM_ENTITLEMENT_KEY=<Enter your IBM entitlement API key>53# ------------------------------------------------------------------------------54# Private container registry55# ------------------------------------------------------------------------------56# Set the following variables if you mirror images to a private container registry.57#58# To export these variables, you must uncomment each command in this section.59# export PRIVATE_REGISTRY_LOCATION=<enter the location of your private container registry>60# export PRIVATE_REGISTRY_PUSH_USER=<enter the username of a user that can push to the registry>61# export PRIVATE_REGISTRY_PUSH_PASSWORD=<enter the password of the user that can push to the registry>62# export PRIVATE_REGISTRY_PULL_USER=<enter the username of a user that can pull from the registry>63# export PRIVATE_REGISTRY_PULL_PASSWORD=<enter the password of the user that can pull from the registry>64# ------------------------------------------------------------------------------65# IBM Software Hub version66# ------------------------------------------------------------------------------67export VERSION=5.1.168# ------------------------------------------------------------------------------69# Components70# ------------------------------------------------------------------------------71export COMPONENTS=ibm-licensing,scheduler,cpfs,cpd_platform72# export COMPONENTS_TO_SKIP=<component-ID-1>,<component-ID-2>73# ------------------------------------------------------------------------------74# watsonx Orchestrate75# ------------------------------------------------------------------------------76# export PROJECT_IBM_APP_CONNECT=<enter your IBM App Connect in containers project>77# export AC_CASE_VERSION=<version>78# export AC_CHANNEL_VERSION=<version>798081