Limited-Time Offer: Enjoy 50% Savings! - Ends In 0d 00h 00m 00s Coupon code: 50OFF
Free Exam Questions

C1000-130 Exam Questions & Answers

IBM Cloud Pak for Integration V2021.2 Administration  •  IBM

113 Questions 90 min Updated Sep 2026 99% Pass Rate
Get Full Access

100% money-back guarantee

Sample C1000-130 Questions

Practice with real exam-style questions, each with the verified correct answer and explanation.

Q1 MultipleChoice

Which statement is true regarding the DataPower Gateway operator?

Correct Answer: C
Explanation:

In IBM Cloud Pak for Integration (CP4I) v2021.2, the DataPower Gateway operator is responsible for managing DataPower Gateway deployments within an OpenShift environment. The correct answer is StatefulSet because of the following reasons:

Why is DataPowerService created as a StatefulSet?

Persistent Identity & Storage:

A StatefulSet ensures that each DataPowerService instance has a stable, unique identity and persistent storage (e.g., for logs, configurations, and stateful data).

This is essential for DataPower since it maintains configurations that should persist across pod restarts.

Ordered Scaling & Upgrades:

StatefulSets provide ordered, predictable scaling and upgrades, which is important for enterprise gateway services like DataPower.

Network Identity Stability:

Each pod in a StatefulSet gets a stable network identity with a persistent DNS entry.

This is critical for DataPower appliances, which rely on fixed hostnames and IPs for communication.

DataPower High Availability:

StatefulSets help maintain high availability and proper state synchronization between multiple instances when deployed in an HA mode.

Why are the other options incorrect?

Option A (DaemonSet):

DaemonSets ensure that one pod runs on every node, which is not necessary for DataPower.

DataPower requires stateful behavior and ordered deployments, which DaemonSets do not provide.

Option B (Deployment):

Deployments are stateless, while DataPower needs stateful behavior (e.g., persistence of certificates, configurations, and transaction data).

Deployments create identical replicas without preserving identity, which is not suitable for DataPower.

Option D (ReplicaSet):

ReplicaSets only ensure a fixed number of running pods but do not manage stateful data or ordered scaling.

DataPower requires persistence and ordered deployment, which ReplicaSets do not support.

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

IBM Cloud Pak for Integration Knowledge Center -- DataPower Gateway Operator

IBM Documentation

IBM DataPower Gateway Operator Overview

Official IBM Cloud documentation on how DataPower is deployed using StatefulSets in OpenShift.

Red Hat OpenShift StatefulSet Documentation

StatefulSets in Kubernetes

Q2 MultipleChoice

Which diagnostic information must be gathered and provided to IBM Support for troubleshooting the Cloud Pak for Integration instance?

Correct Answer: A
Explanation:

When troubleshooting an IBM Cloud Pak for Integration (CP4I) v2021.2 instance, IBM Support requires diagnostic data that provides insights into the system's performance, errors, and failures. The most critical diagnostic information comes from the Standard OpenShift Container Platform logs because:

CP4I runs on OpenShift, and its components are deployed as Kubernetes pods, meaning logs from OpenShift provide essential insights into infrastructure-level and application-level issues.

The OpenShift logs include:

Pod logs (oc logs ), which contain information about application behavior.

Event logs (oc get events), which provide details about errors, scheduling issues, or failed deployments.

Node and system logs, which help diagnose resource exhaustion, networking issues, or storage failures.

Explanation of Incorrect Answers:

B . Platform Navigator event logs Incorrect

While Platform Navigator manages CP4I services, its event logs focus mainly on UI-related issues and do not provide deep troubleshooting data needed for IBM Support.

C . Cloud Pak For Integration activity logs Incorrect

CP4I activity logs include component-specific logs but do not cover the underlying OpenShift platform or container-level issues, which are crucial for troubleshooting.

D . Integration tracing activity reports Incorrect

Integration tracing focuses on tracking API and message flows but is not sufficient for diagnosing broader CP4I system failures or deployment issues.

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

IBM Cloud Pak for Integration Troubleshooting Guide

OpenShift Log Collection for Support

IBM MustGather for Cloud Pak for Integration

Red Hat OpenShift Logging and Monitoring

Q3 MultipleChoice

Which statement is true about the removal of individual subsystems of API Connect on OpenShift or Cloud Pak for Integration?

Correct Answer: C
Explanation:

In IBM Cloud Pak for Integration (CP4I) v2021.2, when deploying API Connect on OpenShift or within the Cloud Pak for Integration framework, there are different deployment methods:

Single Top-Level Custom Resource (CR) -- This method deploys all API Connect subsystems as a single unit, meaning they are managed together. Removing individual subsystems is not supported when using this deployment method. If you need to remove a subsystem, you must delete the entire API Connect instance.

Multiple Independent Custom Resources (CRs) -- This method allows more granular control, enabling the deletion of individual subsystems without affecting the entire deployment.

Since the question specifically asks about API Connect deployed using a single top-level CR, it is not possible to delete individual subsystems. The entire deployment must be deleted and reconfigured if changes are required.

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

IBM API Connect v10 Documentation: IBM Docs - API Connect on OpenShift

IBM Cloud Pak for Integration Knowledge Center: IBM CP4I Documentation

API Connect Deployment Guide: Managing API Connect Subsystems

Q4 MultipleChoice

What is an alternative representation of a Kubemetes namespace?

Correct Answer: D
Explanation:

In IBM Cloud Pak for Integration (CP4I) v2021.2, which runs on Red Hat OpenShift Container Platform (OCP), a Kubernetes namespace is alternatively referred to as a Project.

In Kubernetes, a namespace is a logical isolation mechanism that helps organize and manage resources within a cluster.

In OpenShift (OCP), which is built on Kubernetes, a Project is essentially a namespace with additional OpenShift-specific functionalities such as role-based access control (RBAC), quotas, and security policies.

OpenShift extends the standard Kubernetes namespace concept by integrating user and group access controls, making the Project a more feature-rich alternative.

Thus, in the context of IBM Cloud Pak for Integration (CP4I) v2021.2, the correct alternative representation of a Kubernetes namespace is a Project in OpenShift.

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

IBM CP4I Documentation -- OpenShift Project Management

Red Hat OpenShift Documentation -- Understanding Projects and Namespaces

Kubernetes Documentation -- Namespaces

Q5 MultipleChoice

How can OLM be triggered to start upgrading the IBM Cloud Pak for Integration Platform Navigator operator?

Correct Answer: C
Explanation:

To trigger OLM to start upgrading the Platform Navigator operator, follow these steps:

Go to the OpenShift Web Console.

Navigate to Operators > Installed Operators.

Select the Platform Navigator operator from the list.

Click on the Subscription tab.

Change the channel version to the latest available version.

OLM will detect this change and automatically trigger the upgrade process.

Why this is correct?

OLM follows the subscription model, where the selected channel dictates the upgrade path.

By selecting a newer channel, OLM automatically pulls and installs the latest available version.

Explanation of Incorrect Options:

A. Navigate to the Installed Operators, select the Platform Navigator operator and click the Upgrade button on the Details page.

There is no direct Upgrade button on the Details page for OLM-managed operators.

Instead, upgrades are controlled via subscriptions and channels.

B. Navigate to the Installed Operators, select the Platform Navigator operator, select the operand instance, and select Upgrade from the Actions list.

Operand instances (e.g., Platform Navigator deployment) do not control operator upgrades.

The operator itself must be upgraded through OLM at the subscription level.

D. Open the Platform Navigator web interface and select Update from the main menu.

The Platform Navigator web UI does not have an option to trigger operator upgrades.

Operator management is handled within OpenShift OLM, not inside the application interface.

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

IBM Cloud Pak for Integration Operator Management: IBM Docs - Managing Operators

Red Hat OpenShift OLM Documentation: Upgrading Operators via Subscription

IBM Platform Navigator Installation & Upgrade Guide: IBM Docs - Platform Navigator

Final Answer:

C. Navigate to the Installed Operators, select the Platform Navigator operator and select the latest channel version on the Subscription tab.

Get access to all 113 verified questions with detailed answers.

Unlock All C1000-130 Questions

Frequently Asked Questions

The C1000-130 exam covers IBM Cloud Pak for Integration V2021.2 administration, including installation, configuration, deployment, and management of integration components. Key topics include platform administration, security, monitoring, troubleshooting, and scaling of the Cloud Pak for Integration environment.

The C1000-130 exam typically contains 70-80 questions that must be completed within 90 minutes. The exact number may vary, and candidates are advised to check the official IBM exam details for the most current information.

IBM typically requires a score of around 65-70% to pass the C1000-130 exam, though the exact passing score may vary based on IBM's assessment methodology. It's recommended to aim for a score of 75% or higher to ensure you pass comfortably.

IBM recommends having hands-on experience with IBM Cloud Pak for Integration, including practical knowledge of its installation, configuration, and administration. Previous experience with Kubernetes, containerized environments, and IBM integration products will significantly help in preparing for this exam.

Candidates should study the official IBM Cloud Pak for Integration V2021.2 documentation, take practice exams, and gain practical experience by setting up and managing a Cloud Pak for Integration environment. IBM offers training courses and study materials specifically designed to help prepare for this certification.
Exam Details
  • Exam CodeC1000-130
  • VendorIBM
  • Total Questions113
  • Duration90 min
  • LanguageEnglish
  • Last UpdatedSep 4, 2026
4.9/5

Pass C1000-130 First Time

Get all 113 exam questions with verified answers and 90-day free updates.

Buy Now & Pass
  • PDF + Practice Test Bundle
  • 90-Day Free Updates
  • 100% Money-Back Guarantee
  • Instant Download
  • 24/7 Customer Support
99% Pass Rate Trusted by 50,000+ IT professionals