When installing a new instance of IBM Cloud Pak for Integration (CP4I) Operations Dashboard, several prerequisites must be met. The correct answers are B and D based on IBM Cloud Pak for Integration v2021.2 requirements.
B. A pull secret from IBM Entitled Registry must exist in the namespace containing an entitlement key.
The IBM Entitled Registry hosts the necessary container images required for CP4I components, including Operations Dashboard.
Before installation, you must create a pull secret in the namespace where CP4I is installed. This secret must include your IBM entitlement key to authenticate and pull images.
Command to create the pull secret:
Correct Answers:oc create secret docker-registry ibm-entitlement-key \
--docker-server=cp.icr.io \
--docker-username=cp \
--docker-password= \
--namespace=
D. The vm.max_map_count sysctl setting on worker nodes must be higher than the operating system default.
The Operations Dashboard relies on Elasticsearch, which requires an increased vm.max_map_count setting for better performance and stability.
The default Linux setting (65530) is too low. It needs to be at least 262144 to avoid indexing failures.
To update this setting permanently, run the following command on worker nodes:
sudo sysctl -w vm.max_map_count=262144
A. For shared data, a storage class that provides ReadWriteOnce (RWO) access mode of at least 100 MB is required. (Incorrect)
While persistent storage is required, the Operations Dashboard primarily uses Elasticsearch, which typically requires ReadWriteOnce (RWO) or ReadWriteMany (RWX) block storage. However, the 100 MB storage requirement is incorrect, as Elasticsearch generally requires gigabytes of storage, not just 100 MB.
IBM Recommendation: Typically, Elasticsearch requires at least 10 GB of persistent storage for logs and indexing.
C. If the OpenShift Container Platform Ingress Controller pod runs on the host network, the default namespace must be labeled with network.openshift.io/controller-group: ingress to allow traffic to the Operations Dashboard. (Incorrect)
While OpenShift’s Ingress Controller must be configured correctly, this specific label requirement applies to some specific OpenShift configurations but is not a mandatory prerequisite for Operations Dashboard installation.
Instead, route-based access and appropriate network policies are required to allow ingress traffic.
E. For storing tracing data, a block storage class that provides ReadWriteMany (RWX) access mode and 10 IOPS of at least 10 GB is required. (Incorrect)
Tracing data storage does require persistent storage, but block storage does not support RWX mode in most environments.
Instead, file-based storage with RWX access mode (e.g., NFS) is typically used for OpenShift deployments needing shared storage.
Explanation of Incorrect Options:
IBM Cloud Pak for Integration Operations Dashboard Installation Guide
Setting Up IBM Entitled Registry Pull Secret
Elasticsearch System Configuration - vm.max_map_count
OpenShift Storage Documentation
IBM Cloud Pak for Integration (CP4I) v2021.2 Administration References:
Final Answer:✅ B. A pull secret from IBM Entitled Registry must exist in the namespace containing an entitlement key.✅ D. The vm.max_map_count sysctl setting on worker nodes must be higher than the operating system default.