The IBM C1000-130 exam, "IBM Cloud Pak for Integration V2021.2 Administration", belongs to the IBM Certified Administrator,Cloud Pak for Integration V2021.2 certification track. It is designed for candidates who work with planning, installation, configuration, platform administration, governance, licensing, and troubleshooting tasks in IBM Cloud Pak for Integration environments. This certification matters for professionals who want to validate practical administration skills and demonstrate readiness to support integration platforms effectively.
| # | Exam Topics | Sub-Topics | Approximate Weightage (%) |
|---|---|---|---|
| 1 | Planning and Installation | Environment prerequisites, installation planning, deployment considerations | 20% |
| 2 | Configuration | Initial setup, component configuration, connectivity and environment settings | 20% |
| 3 | Platform Administration | User access, cluster operations, monitoring, day-to-day administration tasks | 25% |
| 4 | Product capabilities, licensing and governance | Product features, license usage, governance controls, policy awareness | 15% |
| 5 | Product Administration and Trouobleshoting | Issue diagnosis, troubleshooting methods, recovery tasks, operational support | 20% |
This exam tests both conceptual understanding and hands-on administrative ability. Candidates should be prepared to work through installation, configuration, operational management, governance, and troubleshooting scenarios with confidence. The questions are intended to measure practical readiness for real IBM Cloud Pak for Integration administration tasks.
QA4Exam.com provides IBM C1000-130 Exam PDF content with actual questions and answers, plus an Online Practice Test that helps you prepare in a structured way. The practice format gives you a real exam simulation so you can understand the question style and improve your confidence before test day. With up-to-date questions and verified answers, you can focus on the most relevant exam areas without wasting time on outdated material. The timed practice test also helps you build time management skills, which is critical for passing the IBM C1000-130 exam on your first attempt.
The IBM C1000-130 exam is for the IBM Cloud Pak for Integration V2021.2 Administration certification and validates administration skills for the platform.
It is suitable for candidates who manage planning, installation, configuration, platform administration, governance, licensing, and troubleshooting in IBM Cloud Pak for Integration environments.
The exam can be challenging because it focuses on practical administration knowledge and problem-solving across several topic areas. Preparation with realistic practice questions can make it much easier to handle.
Braindumps alone are not the best approach. You should combine the QA4Exam.com Exam PDF and Online Practice Test with hands-on understanding of the exam topics for better results.
Yes, hands-on experience is very helpful because the exam covers real administration tasks, configuration, troubleshooting, and platform operations.
They are designed to be highly effective preparation tools, especially when used with review and practical study. The Exam PDF and Online Practice Test help you learn the question style, verify answers, and practice under timed conditions.
They help by giving you real exam simulation, verified answers, and up-to-date questions so you can study efficiently and improve confidence before the actual test.
QA4Exam.com offers an Exam PDF and an Online Practice Test for IBM C1000-130, making it easy to review content and test your readiness in a convenient format.
An administrator is deploying an MQ topology, and is checking that their Cloud Pak (or Integration (CP4I) license entitlement is covered. The administrator has 100 VPCs of CP4I licenses to use. The administrator wishes to deploy an MQ topology using the NativeHA feature.
Which statement is true?
In IBM Cloud Pak for Integration (CP4I), IBM MQ Native High Availability (NativeHA) is a feature that enables automated failover and redundancy by maintaining multiple replicas of an MQ queue manager.
When using NativeHA, licensing in CP4I is calculated based on the total number of VPCs (Virtual Processor Cores) consumed by all MQ instances, including both active and standby replicas.
Why Option B is Correct:
IBM MQ NativeHA uses a multi-replica setup, meaning there are multiple queue manager instances running simultaneously for redundancy.
Licensing in CP4I is based on the total CPU consumption of all running MQ replicas, not just the active instance.
Therefore, the administrator must ensure that all HA replicas are accounted for in their license entitlement.
Analysis of the Incorrect Options:
A . No licenses, because only RDQM is supported on CP4I. (Incorrect)
IBM MQ NativeHA is fully supported on CP4I alongside RDQM (Replicated Data Queue Manager). NativeHA is actually preferred over RDQM in containerized OpenShift environments.
C . A different license from the standard CP4I license must be purchased from IBM to use the NativeHA feature. (Incorrect)
No separate license is required for NativeHA -- it is covered under the CP4I licensing model.
D . The administrator can use their pool of CP4I licenses. (Incorrect)
Partially correct but incomplete -- while the administrator can use their CP4I licenses, they must ensure that all HA replicas are included in the license calculation, not just the active instance.
IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:
IBM MQ Native High Availability Licensing
IBM Cloud Pak for Integration Licensing Guide
IBM MQ on CP4I - Capacity Planning and Licensing
An administrator is looking to install Cloud Pak for Integration on an OpenShift cluster. What is the result of executing the following?

The given YAML configuration is for ClusterLogging in an OpenShift environment, which is used for centralized logging. The key part of the specification that determines the behavior of Elasticsearch is:
logStore:
type: 'elasticsearch'
elasticsearch:
nodeCount: 1
storage: {}
redundancyPolicy: ZeroRedundancy
Analysis of Key Fields:
nodeCount: 1
This means the Elasticsearch cluster will consist of only one node (single-node deployment).
storage: {}
The empty storage field implies no persistent storage is configured.
This means that if the pod is deleted or restarted, all stored logs will be lost.
redundancyPolicy: ZeroRedundancy
ZeroRedundancy means there is no data replication, making the system vulnerable to data loss if the pod crashes.
In contrast, a redundancy policy like MultiRedundancy ensures high availability by replicating data across multiple nodes, but that is not the case here.
Evaluating Answer Choices:
Option
Explanation
Correct?
A . A single node ElasticSearch cluster with default persistent storage.
Incorrect, because storage: {} means no persistent storage is configured.
B . A single infrastructure node with persisted ElasticSearch.
Incorrect, as this is not configuring an infrastructure node, and storage is not persistent.
C . A single node ElasticSearch cluster which auto scales when redundancyPolicy is set to MultiRedundancy.
Incorrect, because setting MultiRedundancy does not automatically enable auto-scaling. Scaling needs manual intervention or Horizontal Pod Autoscaler (HPA).
D . A single node ElasticSearch cluster with no persistent storage.
Correct, because nodeCount: 1 creates a single node, and storage: {} ensures no persistent storage.
Final Answer:
D. A single node ElasticSearch cluster with no persistent storage.
IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:
IBM CP4I Logging and Monitoring Documentation
Red Hat OpenShift Logging Documentation
Elasticsearch Redundancy Policies in OpenShift Logging
What technology are OpenShift Pipelines based on?
OpenShift Pipelines are based on Tekton, an open-source framework for building Continuous Integration/Continuous Deployment (CI/CD) pipelines natively in Kubernetes.
Tekton provides Kubernetes-native CI/CD functionality by defining pipeline resources as custom resources (CRDs) in OpenShift. This allows for scalable, cloud-native automation of software delivery.
Why Tekton is Used in OpenShift Pipelines?
Kubernetes-Native: Unlike Jenkins, which requires external servers or agents, Tekton runs natively in OpenShift/Kubernetes.
Serverless & Declarative: Pipelines are defined using YAML configurations, and execution is event-driven.
Reusable & Extensible: Developers can define Tasks, Pipelines, and Workspaces to create modular workflows.
Integration with GitOps: OpenShift Pipelines support Argo CD for GitOps-based deployment strategies.
Example of a Tekton Pipeline Definition in OpenShift:
apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
name: example-pipeline
spec:
tasks:
- name: echo-hello
taskSpec:
steps:
- name: echo
image: ubuntu
script: |
#!/bin/sh
echo 'Hello, OpenShift Pipelines!'
Explanation of Incorrect Answers:
A . Travis Incorrect
Travis CI is a cloud-based CI/CD service primarily used for GitHub projects, but it is not used in OpenShift Pipelines.
B . Jenkins Incorrect
OpenShift previously supported Jenkins-based CI/CD, but OpenShift Pipelines (Tekton) is now the recommended Kubernetes-native alternative.
Jenkins requires additional agents and servers, whereas Tekton runs serverless in OpenShift.
D . Argo CD Incorrect
Argo CD is used for GitOps-based deployments, but it is not the underlying technology of OpenShift Pipelines.
Tekton and Argo CD can work together, but Argo CD alone does not handle CI/CD pipelines.
IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:
IBM Cloud Pak for Integration CI/CD Pipelines
Red Hat OpenShift Pipelines (Tekton)
Tekton Pipelines Documentation
OpenShift supports forwarding cluster logs to which external third-party system?
In IBM Cloud Pak for Integration (CP4I) v2021.2, which runs on Red Hat OpenShift, cluster logging can be forwarded to external third-party systems, with Splunk being one of the officially supported destinations.
OpenShift Log Forwarding Features:
OpenShift Cluster Logging Operator enables log forwarding.
Supports forwarding logs to various external logging solutions, including Splunk.
Uses the Fluentd log collector to send logs to Splunk's HTTP Event Collector (HEC) endpoint.
Provides centralized log management, analysis, and visualization.
Why Not the Other Options?
B . Kafka Broker -- OpenShift does support sending logs to Kafka, but Kafka is a message broker, not a full-fledged logging system like Splunk.
C . Apache Lucene -- Lucene is a search engine library, not a log management system.
D . Apache Solr -- Solr is based on Lucene and is used for search indexing, not log forwarding.
IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference
OpenShift Log Forwarding to Splunk
IBM Cloud Pak for Integration -- Logging and Monitoring
Red Hat OpenShift Logging Documentation
When using IBM Cloud Pak for Integration and deploying the DataPower Gateway service, which statement is true?
When deploying IBM DataPower Gateway as part of IBM Cloud Pak for Integration (CP4I) v2021.2, administrators can enable a selected list of add-on modules based on their requirements. This allows customization and optimization of the deployment by enabling only the necessary features.
Why Option B is Correct:
IBM DataPower Gateway deployed in Cloud Pak for Integration is a containerized version that supports modular configurations.
Administrators can enable or disable add-on modules to optimize resource utilization and security.
Some of these modules include:
API Gateway
XML Processing
MQ Connectivity
Security Policies
This flexibility helps in reducing overhead and ensuring that only the necessary capabilities are deployed.
Explanation of Incorrect Answers:
A . Only the datapower-cp4i image can be deployed. Incorrect
While datapower-cp4i is the primary image used within Cloud Pak for Integration, other variations of DataPower can also be deployed outside CP4I (e.g., standalone DataPower Gateway).
C . This image deployment brings all the functionality of DataPower as it runs with root permissions. Incorrect
The DataPower container runs as a non-root user for security reasons.
Not all functionalities available in the bare-metal or VM-based DataPower appliance are enabled by default in the containerized version.
D . The datapower-cp4i image will be downloaded from the dockerhub enterprise account of IBM. Incorrect
IBM does not use DockerHub for distributing CP4I container images.
Instead, DataPower images are pulled from the IBM Entitled Registry (cp.icr.io), which requires an IBM Entitlement Key for access.
IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:
IBM Cloud Pak for Integration - Deploying DataPower Gateway
IBM DataPower Gateway Container Deployment Guide
IBM Entitled Registry - Pulling CP4I Images
Full Exam Access, Actual Exam Questions, Validated Answers, Anytime Anywhere, No Download Limits, No Practice Limits
Get All 113 Questions & Answers