Installation checking
When you install watsonx Orchestrate you might face issues, either installation is stuck or not progressing. Go though the following sections for resolutions of the problems.
Checking the installation status
- Symptoms
- Check the status of the installation status.
- Solution
- You can check the watsonx
Orchestrate CR to know
the installation status. To check the CR, run the following
command:
if watsonx Orchestrate is installed on a namespace and running, the CR status is displayed asoc get wo -o yamlcompleted.
Checking the watsonx Orchestrate logs
- Symptoms
- Check the status of the logs.
- Solution
-
The logs can provide helpful information to identify problems with watsonx Orchestrate.
Run the following command to check the operator logs:oc logs -f wo-operator-xxxx –n ${PROJECT_CPD_INST_OPERATORS}Where,
xxxis a random string that is appended to the pod name.Run the following command to check the component operator logs:oc logs -f ibm-wxo-componentcontroller-manager-xxxx –n ${PROJECT_CPD_INST_OPERATORS}Where,
xxxis a random string that is appended to the pod name.Run the following command to check the logs of a pod that has any issues:
Review the messages after you run the commands.c logs -f <POD_NAME> –n ${PROJECT_CPD_INST_OPERANDS}
Checking the status of the watsonx Orchestrate pods
- Symptoms
- Check the status of the pods.
- Solution
- Run the following command to determine any nonrunning
pods:
To check that why a pod is not running, use the following command:oc get pods –n ${PROJECT_CPD_INST_OPERANDS} |grep wo- | grep –v “Running”oc describe pod <POD_NAME> –n ${PROJECT_CPD_INST_OPERANDS}