Path: blob/main/L4assets/DSandMLOpsAssets/Installation/Software-Hub-5.2/cpd_vars.sh
1928 views
#===============================================================================1# IBM Software Hub installation variables2#===============================================================================34# ------------------------------------------------------------------------------5# Client workstation6# ------------------------------------------------------------------------------7# Set the following variables if you want to override the default behavior of the IBM Software Hub CLI.8#9# To export these variables, you must uncomment each command in this section.1011# export CPD_CLI_MANAGE_WORKSPACE=<enter a fully qualified directory>12# export OLM_UTILS_LAUNCH_ARGS=<enter launch arguments>131415# ------------------------------------------------------------------------------16# Cluster17# ------------------------------------------------------------------------------1819export OCP_URL=<Enter your own value>20export OPENSHIFT_TYPE=self-managed21export IMAGE_ARCH=amd6422export OCP_USERNAME=<Enter your own value>23export OCP_PASSWORD=<Enter your own value>24# export OCP_TOKEN=<enter your token>25export SERVER_ARGUMENTS="--server=${OCP_URL}"26export LOGIN_ARGUMENTS="--username=${OCP_USERNAME} --password=${OCP_PASSWORD}"27# export LOGIN_ARGUMENTS="--token=${OCP_TOKEN}"28export CPDM_OC_LOGIN="cpd-cli manage login-to-ocp ${SERVER_ARGUMENTS} ${LOGIN_ARGUMENTS}"29export OC_LOGIN="oc login ${SERVER_ARGUMENTS} ${LOGIN_ARGUMENTS}"303132# ------------------------------------------------------------------------------33# Proxy server34# ------------------------------------------------------------------------------3536# export PROXY_HOST=<enter your proxy server hostname>37# export PROXY_PORT=<enter your proxy server port number>38# export PROXY_USER=<enter your proxy server username>39# export PROXY_PASSWORD=<enter your proxy server password>40# export NO_PROXY_LIST=<a comma-separated list of domain names>414243# ------------------------------------------------------------------------------44# Projects45# ------------------------------------------------------------------------------4647export PROJECT_CERT_MANAGER=ibm-cert-manager48export PROJECT_LICENSE_SERVICE=ibm-licensing49export PROJECT_SCHEDULING_SERVICE=ibm-cpd-scheduler50# export PROJECT_IBM_EVENTS=<enter your IBM Events Operator project>51export PROJECT_PRIVILEGED_MONITORING_SERVICE=ibm-cpd-privileged52export PROJECT_CPD_INST_OPERATORS=softwarehub-operators53export PROJECT_CPD_INST_OPERANDS=softwarehub-services54# export PROJECT_CPD_INSTANCE_TETHERED=<enter your tethered project>55# export PROJECT_CPD_INSTANCE_TETHERED_LIST=<a comma-separated list of tethered projects>56575859# ------------------------------------------------------------------------------60# Storage61# ------------------------------------------------------------------------------6263export STG_CLASS_BLOCK=ocs-storagecluster-ceph-rbd64export STG_CLASS_FILE=ocs-storagecluster-cephfs6566# ------------------------------------------------------------------------------67# IBM Entitled Registry68# ------------------------------------------------------------------------------6970export IBM_ENTITLEMENT_KEY=<Enter your IBM entitlement API key>717273# ------------------------------------------------------------------------------74# Private container registry75# ------------------------------------------------------------------------------76# Set the following variables if you mirror images to a private container registry.77#78# To export these variables, you must uncomment each command in this section.7980# export PRIVATE_REGISTRY_LOCATION=<enter the location of your private container registry>81# export PRIVATE_REGISTRY_PUSH_USER=<enter the username of a user that can push to the registry>82# export PRIVATE_REGISTRY_PUSH_PASSWORD=<enter the password of the user that can push to the registry>83# export PRIVATE_REGISTRY_PULL_USER=<enter the username of a user that can pull from the registry>84# export PRIVATE_REGISTRY_PULL_PASSWORD=<enter the password of the user that can pull from the registry>858687# ------------------------------------------------------------------------------88# IBM Software Hub version89# ------------------------------------------------------------------------------9091export VERSION=5.2.0929394# ------------------------------------------------------------------------------95# Components96# ------------------------------------------------------------------------------9798export COMPONENTS=ibm-licensing,scheduler,cpfs,cpd_platform99# export COMPONENTS_TO_SKIP=<component-ID-1>,<component-ID-2>100# export IMAGE_GROUPS=<image-group-1>,<image-group-2>101102103