Free IBM C1000-130 Exam Actual Questions

The questions for C1000-130 were last updated On Jun 14, 2025

At ValidExamDumps, we consistently monitor updates to the IBM C1000-130 exam questions by IBM. Whenever our team identifies changes in the exam questions,exam objectives, exam focus areas or in exam requirements, We immediately update our exam questions for both PDF and online practice exams. This commitment ensures our customers always have access to the most current and accurate questions. By preparing with these actual questions, our customers can successfully pass the IBM Cloud Pak for Integration V2021.2 Administration exam on their first attempt without needing additional materials or study guides.

Other certification materials providers often include outdated or removed questions by IBM in their IBM C1000-130 exam. These outdated questions lead to customers failing their IBM Cloud Pak for Integration V2021.2 Administration exam. In contrast, we ensure our questions bank includes only precise and up-to-date questions, guaranteeing their presence in your actual exam. Our main priority is your success in the IBM C1000-130 exam, not profiting from selling obsolete exam questions in PDF or Online Practice Test.

 

Question No. 1

Which two authentication types support single sign-on?

Show Answer Hide Answer
Correct Answer: B, E

Single Sign-On (SSO) is an authentication mechanism that allows users to log in once and gain access to multiple applications without re-entering credentials. In IBM Cloud Pak for Integration (CP4I), Enterprise LDAP and OpenShift authentication both support SSO.

Enterprise LDAP (B) -- Supports SSO

Lightweight Directory Access Protocol (LDAP) is commonly used in enterprises for centralized authentication.

CP4I can integrate with Enterprise LDAP, allowing users to authenticate once and access multiple cloud services without needing separate logins.

OpenShift Authentication (E) -- Supports SSO

OpenShift provides OAuth-based authentication, enabling SSO across multiple OpenShift-integrated services.

CP4I uses OpenShift's built-in identity provider to allow seamless user authentication across different Cloud Pak components.

Analysis of the Incorrect Options:

A . 2FA (Incorrect):

Two-Factor Authentication (2FA) enhances security by requiring an additional verification step but does not inherently support SSO.

C . Plain Text over HTTPS (Incorrect):

Plain text authentication is insecure and does not support SSO.

D . Enterprise SSH (Incorrect):

SSH authentication is used for remote access to servers but is not related to SSO.

IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:

IBM Cloud Pak for Integration Authentication & SSO Guide

Red Hat OpenShift Authentication and Identity Providers

IBM Cloud Pak - Integrating with Enterprise LDAP


Question No. 2

Which OpenShift component controls the placement of workloads on nodes for Cloud Pak for Integration deployments?

Show Answer Hide Answer
Correct Answer: D

In IBM Cloud Pak for Integration (CP4I) v2021.2, which runs on Red Hat OpenShift, the component responsible for determining the placement of workloads (pods) on worker nodes is the Scheduler.

Explanation of OpenShift Components:

API Server (Option A): The API Server is the front-end of the OpenShift and Kubernetes control plane, handling REST API requests, authentication, and cluster state updates. However, it does not decide where workloads should be placed.

Controller Manager (Option B): The Controller Manager ensures the desired state of the system by managing controllers (e.g., ReplicationController, NodeController). It does not handle pod placement.

Etcd (Option C): Etcd is the distributed key-value store used by OpenShift and Kubernetes to store cluster state data. It plays no role in scheduling workloads.

Scheduler (Option D - Correct Answer): The Scheduler is responsible for selecting the most suitable node to run a newly created pod based on resource availability, affinity/anti-affinity rules, and other constraints.

Why the Scheduler is Correct?

When a new pod is created, it initially has no assigned node.

The Scheduler evaluates all worker nodes and assigns the pod to the most appropriate node, ensuring balanced resource utilization and policy compliance.

In CP4I, efficient workload placement is crucial for maintaining performance and resilience, and the Scheduler ensures that workloads are optimally distributed across the cluster.

IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:

IBM CP4I Documentation -- Deploying on OpenShift

Red Hat OpenShift Documentation -- Understanding the Scheduler

Kubernetes Documentation -- Scheduler


Question No. 3

Which option should an administrator choose if they need to run Cloud Pak for Integration (CP4I) on AWS but do not want to have to manage the OpenShift layer themselves?

Show Answer Hide Answer
Correct Answer: A

When deploying IBM Cloud Pak for Integration (CP4I) v2021.2 on AWS, an administrator has multiple options for managing the OpenShift layer. However, if the goal is to avoid managing OpenShift manually, the best approach is to deploy CP4I onto AWS ROSA (Red Hat OpenShift Service on AWS).

Why is AWS ROSA the Best Choice?

Managed OpenShift: ROSA is a fully managed OpenShift service, meaning AWS and Red Hat handle the deployment, updates, patching, and infrastructure maintenance of OpenShift.

Simplified Deployment: Administrators can directly deploy CP4I on ROSA without worrying about installing and maintaining OpenShift on AWS manually.

IBM Support: IBM Cloud Pak solutions, including CP4I, are certified to run on ROSA, ensuring compatibility and optimized performance.

Integration with AWS Services: ROSA allows seamless integration with AWS-native services like S3, RDS, and IAM for authentication and storage.

Why Not the Other Options?

B . Installer-provisioned Infrastructure on EC2 -- This requires manual setup of OpenShift on AWS EC2 instances, increasing operational overhead.

C . CP4I Quick Start on AWS -- IBM provides a Quick Start guide for deploying CP4I, but it assumes you are managing OpenShift yourself. This does not eliminate OpenShift management.

D . Terraform scripts from IBM's GitHub -- These scripts help automate provisioning but still require the administrator to manage OpenShift themselves.

Thus, for a fully managed OpenShift solution on AWS, AWS ROSA is the best option.

IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:

IBM Cloud Pak for Integration Documentation

IBM Cloud Pak for Integration on AWS ROSA

Deploying Cloud Pak for Integration on AWS

Red Hat OpenShift Service on AWS (ROSA) Overview


Question No. 4

When upgrading Cloud Pak (or Integration and switching from Common Services (CS) monitoring to OpenShift monitoring, what command will check whether CS monitoring is enabled?

Show Answer Hide Answer
Correct Answer: A

When upgrading IBM Cloud Pak for Integration (CP4I) and switching from Common Services (CS) monitoring to OpenShift monitoring, it is crucial to determine whether CS monitoring is currently enabled.

The correct command to check this is:

sh

CopyEdit

oc get pods -n ibm-common-services | grep monitoring

This command (oc get pods -n ibm-common-services) lists all pods in the ibm-common-services namespace, which is where IBM Common Services (including monitoring components) are deployed.

Using grep monitoring filters the output to show only the monitoring-related pods.

If monitoring-related pods are running in this namespace, it confirms that CS monitoring is enabled.

Explanation of Incorrect Options:

B (oc list pods -A | grep -i monitoring) -- Incorrect

The oc list pods command does not exist in OpenShift CLI. The correct command to list all pods across all namespaces is oc get pods -A.

C (oc describe pods/ibm-common-services | grep monitoring) -- Incorrect

oc describe pods/ibm-common-services is not a valid OpenShift command. The correct syntax would be oc describe pod -n ibm-common-services, but this only provides details of a specific pod, not a general check for monitoring pods.

D (oc get containers -A) -- Incorrect

The oc get containers command is not valid in OpenShift CLI. Instead, oc get pods -A lists all pods, but it does not specifically filter monitoring-related services in the ibm-common-services namespace.

IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:

IBM Documentation: Monitoring IBM Cloud Pak foundational services

IBM Cloud Pak for Integration: Disabling foundational services monitoring

OpenShift Documentation: Managing Pods in OpenShift


Question No. 5

After setting up OpenShift Logging an index pattern in Kibana must be created to retrieve logs for Cloud Pak for Integration (CP4I) applications. What is the correct index for CP4I applications?

Show Answer Hide Answer
Correct Answer: B

When configuring OpenShift Logging with Kibana to retrieve logs for Cloud Pak for Integration (CP4I) applications, the correct index pattern to use is applications*.

Here's why:

IBM Cloud Pak for Integration (CP4I) applications running on OpenShift generate logs that are stored in the Elasticsearch logging stack.

The standard OpenShift logging format organizes logs into different indices based on their source type.

The applications* index pattern is used to capture logs for applications deployed on OpenShift, including CP4I components.

Analysis of the options:

Option A (Incorrect -- cp4i-*): There is no specific index pattern named cp4i-* for retrieving CP4I logs in OpenShift Logging.

*Option B (Correct -- applications)**: This is the correct index pattern used in Kibana to retrieve logs from OpenShift applications, including CP4I components.

Option C (Incorrect -- torn-*): This is not a valid OpenShift logging index pattern.

Option D (Incorrect -- app-*): This index does not exist in OpenShift logging by default.

IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:

IBM Cloud Pak for Integration Logging Guide

OpenShift Logging Documentation

Kibana and Elasticsearch Index Patterns in OpenShift