Collecting log files of final installation

Three operators get involved in the final installation. The Installer operator adds compute nodes to the OpenShift® Container Platform cluster, and orchestrates the overall final installation. The Storage operator installs the IBM Storage Scale cluster.

See these steps to get the IBM Storage Fusion log file of all these three operators.
  1. Log in to the cluster with the correct permissions to access the ibm-spectrum-fusion-ns namespace resource.
  2. Run the following command to go to the ibm-spectrum-fusion-ns namespace:
    oc project ibm-spectrum-fusion-ns
    The following message is displayed as an output:
    Now using project "ibm-spectrum-fusion-ns" on server "https://api.racke.mydomain.com:6443".
  3. Run the following command to get the Installer operator Pod's name:
    oc get po -l control-plane=isf-installer-operator
    A sample result of this command is as follows.
    NAME                                                         READY   STATUS    RESTARTS   AGE
    isf-installer-operator-controller-manager-58546db557-qrcrn   2/2     Running   0          6h29m
    Run the following command to get the Installer operator log information:
    oc logs <Installer operator Pod's name> manager > ./installer-operator.log
    A sample command is as follows:
    oc logs isf-installer-operator-controller-manager-58546db557-qrcrn manager > ./installer-operator.log
    isf-installer-operator-controller-manager-58546db557-qrcrn is the Installer operator Pod's name. Replace this value with your Installer operator Pod's name. The value of the container name is always manager.
  4. Run the following command to get the Storage operator Pod's name:
    oc get po -l control-plane=isf-storage-operator
    A sample result of this command is as follows.
    NAME                                                       READY   STATUS             RESTARTS   AGE
    isf-storage-operator-controller-manager-7c6f945c97-bv7mp   2/2     Running            0          6h29m
    Run the following command to get the Storage operator log information:
    oc logs <Storage operator Pod's name> manager > ./storage-operator.log
    A sample command is as follows.
    oc logs isf-storage-operator-controller-manager-7c6f945c97-bv7mp manager > ./storage-operator.log
    isf-storage-operator-controller-manager-7c6f945c97-bv7mp is the Storage operator Pod's name. Replace this value with your Storage operator Pod's name. The value of the container name is always manager.
  5. Run the following command to get the BackupRestore operator Pod's name:
    oc get po -l control-plane=isf-bkprstr-operator
    A sample result of this command is as follows.
    NAME                                                       READY   STATUS             RESTARTS   AGE
    isf-bkprstr-operator-controller-manager-55b646456f-kcxcf   2/2     Running            0          6h29m
    Run the following command to get the BackupRestore operator log information:
    oc logs <BackupRestore operator Pod's name> manager > ./bkprstr-operator.log
    A sample command is as follows:
    oc logs isf-bkprstr-operator-controller-manager-55b646456f-kcxcf manager > ./bkprstr-operator.log
    isf-bkprstr-operator-controller-manager-55b646456f-kcxcf is the BackupRestore operator Pod's name. Replace this value with your BackupRestore operator Pod's name. The value of the container name is always manager.