Downloading scripts for additional configuration from specific version CASE bundle

Before you begin

Install the yq command-line YAML processor on your client machine of the target cluster before you run the scripts

  1. Identify your client machine architecture and set yq Binary name
  2. Set Binary Name yq_linux_amd64 for a Linux® x86_64 cluster

      BINARY=yq_linux_amd64
    
  3. Set Binary Name yq_linux_ppc64 for a Linux® on Power® (ppc64le) cluster

      BINARY=yq_linux_ppc64
    
  4. Set Binary Name yq_linux_s390x for a IBM® Z cluster

      BINARY=yq_linux_s390x
    
  5. Download and install the binary in your PATH

     wget https://github.com/mikefarah/yq/releases/latest/download/${BINARY} -O /usr/bin/yq &&\
     chmod +x /usr/bin/yq
    

Setting up your environment to download scripts from specific version CASE bundle

  1. Create the following environment variable with the CASE version.

    Note: To find the CASE version, see IBM: Product CASE to Application Version and search for the installed foundational services version to find the related CASE version.

    export CASE_VERSION=<YOUR_CASE_VERSION>
    

Downloading and extracting specific version CASE bundle

  1. Get the specific version of CASE bundle which contains scripts for configuration options.

     wget https://github.com/IBM/cloud-pak/raw/master/repo/case/ibm-cp-common-services/${CASE_VERSION}/ibm-cp-common-services-${CASE_VERSION}.tgz
    
  2. Extract contents from the bundle.

     tar -xvzf ibm-cp-common-services-$CASE_VERSION.tgz
    

Locating the scripts in folder installer_scripts

  1. Change directory to the installer_scripts folder. The scripts are in the folder.
     cd ibm-cp-common-services/inventory/ibmCommonServiceOperatorSetup/installer_scripts