Verified NCP-CN dumps Q&As - Pass Guarantee Exam Dumps Test Engine [2026]
NCP-CN dumps and 111 unique questions
NEW QUESTION # 64
After loading the NKP bundles to a private registry in an air-gapped environment, a Platform Engineer now needs the Konvoy bootstrap image to create the bootstrap cluster. The Konvoy image has not been loaded into the registry. Which is the most viable command to load the Konvoy bootstrap image on the bastion host?
- A. docker load -i konvoy-bootstrap-image-<version>.tar
- B. docker image tag konvoy-bootstrap-image-<version>.tar version docker.io/konvoy-bootstrap version
- C. nkp push bundle --bundle konvoy-bootstrap-image-<version>.tar --to-registry=<REGISTRY_URL>
- D. nkp load image -f konvoy-bootstrap-image-<version>.tar --to-registry=<REGISTRY_URL>
Answer: A
Explanation:
In an air-gapped NKP deployment, the Konvoy bootstrap image (used to create the bootstrap cluster) must be available locally on the bastion host or in a private registry. The NKPA course specifies that after extracting the NKP Air-Gapped Bundle, the bootstrap image (e.g., konvoy-bootstrap-image-<version>.tar) is a tarball that needs to be loaded into the Docker daemon on the bastion host before creating the bootstrap cluster.
The most viable command is docker load -i konvoy-bootstrap-image-<version>.tar (Option A). This command loads the tarball into the local Docker daemon on the bastion host, making the image available for the nkp create bootstrap command to use. The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: "In an air-gapped environment, load the Konvoy bootstrap image on the bastion host using docker load -i <image- tar-file> to make it available for creating the bootstrap cluster." After loading, the engineer can optionally tag and push the image to the private registry if needed, but the question focuses on loading the image on the host, which this command accomplishes.
Incorrect Options:
* B. docker image tag: This command is syntactically incorrect (version appears twice, and .tar is not part of a tag). Tagging is a subsequent step after loading, not the primary action to load the image.
* C. nkp push bundle: This is not a valid command for loading an image; it's closer to a bundle management action, but the syntax is incorrect.
* D. nkp load image: There is no nkp load image command in NKP; loading images is done via docker load.
:
Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Air-Gapped Deployments.
Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on NKP Deployment Prerequisites.
Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com
NEW QUESTION # 65
A Platform Engineer has been tasked with building a custom image for the deployment of NKP management and worker nodes. The engineer needs to ensure that the proper package versions are used when creating these images. The security team has only authorized version 1.30.5 of Kubernetes and version 1.7.22 of containerd. Where should the engineer go to verify that this is the version being used when building the custom image?
- A. ansible/group_vars/all/defaults.yaml
- B. The custom image's .env file
- C. config/pulumi/vars/pulumi.kib.config
- D. terraform/vars/default/terraform.tfvars
Answer: A
NEW QUESTION # 66
A company has 30 Edge devices with lightweight Kubernetes, and developers need to push the application to every edge device. An NKP administrator has the NKP Ultimate license tier configured and has access to all kubeconfig files for the 30 edge devices. What is the most efficient way that the administrator can lifecycle manage the application deployments?
- A. Create a new Workspace and attach the 30 edge devices to this workspace with Attach Cluster.
- B. Ask the developers to delete the lightweight Kubernetes and deploy new Kubernetes clusters with NKP.
- C. Create a script to automate the deployment to every edge device.
- D. Create a GitHub configuration, deploy it to the 30 edge devices, and configure them to use a GitHub account.
Answer: A
NEW QUESTION # 67
A Platform Engineer manages an NKP v2.12.x environment and is using NKP Image Builder (NIB) to create a custom image. Which two distributions are available for use by the engineer for this task? (Choose two.)
- A. CentOS
- B. Ubuntu
- C. Rocky Linux
- D. Fedora
Answer: B,C
NEW QUESTION # 68
Which NKP-supported infrastructure will not receive CAPI components when an NKP cluster is deployed to it?
- A. GCP
- B. vSphere
- C. Nutanix
- D. AKS
Answer: D
NEW QUESTION # 69
The bastion host is currently set up with Rocky Linux and the engineer will need to configure it to meet the requirements for the air-gapped cluster.
Which first step should the engineer take to configure the bastion host?
- A. Configure the bastion VM with a public IP address.
- B. Set up a connection on the bastion host so that it can pull images from Docker Hub.
- C. Install the pre-requisites yum-utils, bzip2, and wget.
- D. Create a bootstrap cluster.
Answer: C
NEW QUESTION # 70
A Platform Engineer will be deploying an NKP cluster in a dark site with no Internet access. The Cloud Administrator has provided a Linux VM for this purpose, so the engineer needs to prepare this VM to be used as a bastion host. Which two actions should the engineer take to complete this task? (Choose two.)
- A. Install LDAP Server.
- B. Get or create SSH Keys.
- C. Install Docker.
- D. Enable NTP Service.
Answer: B,D
Explanation:
A bastion host in a dark site environment serves as a secure entry point for managing the NKP deployment, providing access to the cluster infrastructure without direct Internet connectivity. The NKPA course outlines the prerequisites for preparing a Linux VM as a bastion host, focusing on secure access and time synchronization, which are critical for air-gapped Kubernetes deployments.
* Get or create SSH Keys (Option B):The bastion host requires SSH keys to enable secure, passwordless access to the NKP cluster nodes and other infrastructure components (e.g., Nutanix AHV hosts). The NKPA course specifies that SSH keys must be generated or obtained and configured on the bastion host to facilitate secure communication during deployment and management tasks. The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: "For a bastion host in an NKP dark site deployment, ensure SSH keys are created or obtained to enable secure access to cluster nodes and infrastructure." The engineer can generate SSH keys using ssh-keygen and distribute the public key to the target systems.
* Enable NTP Service (Option D):Time synchronization is essential in Kubernetes clusters to ensure consistent logging, certificate management, and scheduling. In a dark site with no Internet access, the bastion host must be configured to synchronize time with an internal NTP (Network Time Protocol) server or act as an NTP server itself. The NKPA course emphasizes enabling the NTP service on the bastion host to maintain accurate time across the air-gapped environment. The NCP-CN 6.10 Study Guide notes: "Enable the NTP service on the bastion host to ensure time synchronization in a dark site NKP deployment, as Kubernetes requires accurate time for proper operation." The engineer can enable NTP using commands like systemctl enable ntpd and configure it to use an internal time source.
Incorrect Options:
* A. Install LDAP Server: LDAP is used for centralized authentication, but it is not a requirement for a bastion host in an NKP dark site deployment. The course focuses on SSH access instead.
* C. Install Docker: While Docker is needed on Kubernetes nodes for container runtimes, the bastion host's role is to provide secure access and management, not to run containers.
:
Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Preparing for Dark Site Deployments.
Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on NKP Deployment Prerequisites.
Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com
NEW QUESTION # 71 
A DevOps team faces a growing challenge of managing logs from multiple applications in an NKP cluster.
With several teams working on different projects, it is essential to implement a Multi-Tenant Logging system that allows each team to access their own logs securely and efficiently. Initially, two namespaces have been configured for each project, as shown in the exhibit. Then a ConfigMap has also been configured for each tenant, which contains the logging configuration. Which YAML output corresponds to a retention period of
30 days for tenant-innovation and seven days for tenant-analytics?
- A. yaml
CollapseWrap
Copy
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-innovation-config
namespace: tenant-innovation
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 30h
---
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-analytics-config
namespace: tenant-analytics
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 7h - B. yaml
CollapseWrap
Copy
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-innovation-config
namespace: tenant
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 30d
---
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-analytics-config
namespace: tenant
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 7d - C. yaml
CollapseWrap
Copy
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-innovation-config
namespace: tenant-innovation
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 30d
---
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-analytics-config
namespace: tenant-innovation
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 7d - D. yaml
CollapseWrap
Copy
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-innovation-config
namespace: tenant-innovation
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 30d
---
apiVersion: v1
kind: ConfigMap
metadata:
name: logging-analytics-config
namespace: tenant-analytics
data:
values.yaml: |
loki:
structuredConfig:
limits_config:
retention_period: 7d
Answer: D
Explanation:
The NKPA course explains that NKP uses Grafana Loki as part of its logging stack to implement a multi- tenant logging system, allowing teams to access their logs securely within their respective namespaces. The exhibit indicates two namespaces, tenant-innovation and tenant-analytics, each with a ConfigMap for logging configuration. The requirement is to set a retention period of 30 days for tenant-innovation and 7 days for tenant-analytics.
The correct YAML output (Option A) configures Loki's retention period using ConfigMaps in the appropriate namespaces:
* For tenant-innovation, the ConfigMap logging-innovation-config in the tenant-innovation namespace sets retention_period: 30d.
* For tenant-analytics, the ConfigMap logging-analytics-config in the tenant-analytics namespace sets retention_period: 7d.
The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: "In NKP, configure multi-tenant logging with Grafana Loki by creating a ConfigMap per namespace, specifying retention periods under loki.
structuredConfig.limits_config.retention_period (e.g., 30d for 30 days, 7d for 7 days)." The d suffix denotes days, aligning with the requirement for 30 days and 7 days retention periods.
Incorrect Options:
* B: The second ConfigMap incorrectly uses the tenant-innovation namespace instead of tenant-analytics, breaking the multi-tenant isolation.
* C: The retention periods are set to 30h and 7h (hours), not 30d and 7d (days), which does not meet the requirement.
* D: Both ConfigMaps use a generic tenant namespace, which does not match the specific namespaces (tenant-innovation, tenant-analytics) shown in the exhibit.
:
Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Multi-Tenant Logging with Loki.
Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on Day 2 Operations.
Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com Grafana Loki Documentation: https://grafana.com/docs/loki
NEW QUESTION # 72
A Platform Engineer needs to utilize the Konvoy Image Builder for building a custom operating system image. This image will be used to deploy clusters on various platforms. The engineer has been tasked with creating an OS image compatible with Konvoy's requirements. In order to successfully build a compatible image using the Konvoy Image Builder, the engineer needs to ensure that a development environment meets the necessary prerequisites.
Which system is required to create a compatible OS image with the Konvoy Image Builder?
- A. A virtualized arm64 environment using KVM
- B. A lambda instance within an AWS account
- C. An x86_64-based Linux or MacOS Machine
- D. A 32-bit Windows machine with a USB connection
Answer: C
Explanation:
The Konvoy Image Builder requires a 64-bit Linux or MacOS environment (x86_64 architecture) to build and customize the OS images.
Reference:
Nutanix Kubernetes Platform Administration (NKPA) 6.10 - "Konvoy Image Builder System Requirements" NCP-CN 6.10 Study Guide - "KIB Environment Prerequisites"
=======
NEW QUESTION # 73
A company has standardized on NKP for their Kubernetes platform and needs to deploy their first cluster with the following requirements:
Dark site ready
Custom Service CIDR Block
Custom Pod CIDR Block
Hosted on Nutanix AHV ClusterWhich tool would the administrator use to perform the deployment?
- A. kubectl CLI
- B. NKP CLI
- C. OCP CLI
- D. NKP GUI
Answer: B
NEW QUESTION # 74
A company has 30 Edge devices with lightweight Kubernetes, and developers need to push the application to every edge device. An NKP administrator has the NKP Ultimate license tier configured and has access to all kubeconfig files for the 30 edge devices. What is the most efficient way that the administrator can lifecycle manage the application deployments?
- A. Create a new Workspace and attach the 30 edge devices to this workspace with Attach Cluster.
- B. Ask the developers to delete the lightweight Kubernetes and deploy new Kubernetes clusters with NKP.
- C. Create a script to automate the deployment to every edge device.
- D. Create a GitHub configuration, deploy it to the 30 edge devices, and configure them to use a GitHub account.
Answer: A
Explanation:
The NKPA course emphasizes that NKP's fleet management capabilities allow administrators to manage multiple Kubernetes clusters, including lightweight clusters on edge devices, by attaching them to an NKP workspace. With the NKP Ultimate license tier, the administrator has access to advanced fleet management features, including GitOps-based application deployment across attached clusters.
The most efficient way to lifecycle manage application deployments across the 30 edge devices is to create a new workspace and attach the 30 edge devices to this workspace using the Attach Cluster functionality (Option D). Once attached, NKP can use GitOps (via Flux) to push applications to all clusters in the workspace simultaneously, ensuring consistent deployment and lifecycle management. The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: "For managing edge devices with lightweight Kubernetes, attach the clusters to an NKP workspace using the Attach Cluster feature, enabling centralized application deployment and lifecycle management via GitOps." The administrator can use the kubeconfig files to attach each cluster via the NKP UI or CLI (e.g., nkp attach cluster).
Incorrect Options:
* A. Create a GitHub configuration for each device: This is manual and inefficient compared to NKP's centralized GitOps management.
* B. Create a script to automate deployment: Scripting is error-prone and lacks NKP's built-in fleet management capabilities.
* C. Delete lightweight Kubernetes and deploy new clusters: This is unnecessary, as NKP can manage existing clusters, including lightweight ones.
:
Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Fleet Management.
Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on Attaching Clusters.
Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com
NEW QUESTION # 75
A company has enabled auto-scaling within an NKP cluster. What is the behavior for auto-scaling?
- A. Memory is hot-added or hot-removed from a node.
- B. Nodes will be CAPI-created or CAPI-deleted as needed by the cluster.
- C. CPU is hot-added or hot-removed from a node.
- D. The Power-On Status/Mode of a node is changed to meet load conditions.
Answer: B
NEW QUESTION # 76
NKP cluster nodes require a disk for some of its deployed components, outside of an application's persistent volume requirements. What are these components and where are they deployed?
- A. kubelet and containerd in /var/lib
- B. kubectl and kubelet in /var/nkp
- C. kubectl and kubelet in /opt/nkp
- D. kubelet and containerd, in /opt/nkp
Answer: A
Explanation:
According to the NKPA 6.10 documentation, the critical system components for NKP nodes are:
* kubelet
* containerdThese components are deployed in the standard Linux path: /var/lib.
Exact extract from the documentation:
"The kubelet and containerd services require disk space in /var/lib on the host operating system. It's essential to allocate sufficient storage in /var/lib to accommodate these core Kubernetes components." Reference:
Nutanix Kubernetes Platform Administration (NKPA) 6.10 - "Host Requirements for Cluster Nodes" NCP-CN 6.10 Study Guide - "Node OS Directory Requirements"
=======
NEW QUESTION # 77 
After creating the project, what should the administrator configure in order for the new software releases to automatically deploy to both environments?
- A. Project Secrets
- B. Project ConfigMaps
- C. Continue Integration (CI)
- D. Continue Deployment (CD)
Answer: D
NEW QUESTION # 78
A development team has decided to implement an efficient logging system and use AWS S3 as storage to manage large volumes of logs in a scalable way.
The team followed these steps:
Set the WORKSPACE_NAMESPACE variable to the namespace copied in the previous step.
Created a config that overrode ConfigMap to update the storage configuration.
Updated the grafana-loki AppDeployment to apply the configuration override.However the implementation failed.What should the team do to be able to manage log storage in AWS?
- A. Create a tenant on AWS.
- B. Create a secret containing the static AWS S3 credentials.
- C. Configure an IP address corresponding to AWS storage.
- D. Configure a new IAM role specifically for NKP.
Answer: B
NEW QUESTION # 79
A company has enabled auto-scaling within an NKP cluster. What is the behavior for auto-scaling?
- A. Memory is hot-added or hot-removed from a node.
- B. Nodes will be CAPI-created or CAPI-deleted as needed by the cluster.
- C. CPU is hot-added or hot-removed from a node.
- D. The Power-On Status/Mode of a node is changed to meet load conditions.
Answer: B
Explanation:
The NKPA course explains that NKP supports auto-scaling for clusters using Cluster API (CAPI), which manages the lifecycle of Kubernetes nodes. When auto-scaling is enabled, NKP monitors cluster workloads and automatically adjusts the number of nodes based on demand. The behavior involves CAPI creating or deleting nodes as needed to scale the cluster up or down, ensuring optimal resource utilization.
The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: "NKP auto-scaling uses Cluster API to dynamically create or delete nodes in response to workload demands, ensuring the cluster scales efficiently." For example, if the workload increases, CAPI provisions additional worker nodes; if demand decreases, CAPI deletes nodes to reduce costs.
Incorrect Options:
* A. CPU is hot-added or hot-removed: Hot-adding/removing CPU is not a Kubernetes auto-scaling behavior; scaling involves adding/removing nodes.
* B. Memory is hot-added or hot-removed: Similar to CPU, memory scaling at the node level is not supported in this context.
* C. Power-On Status/Mode of a node is changed: Auto-scaling does not involve changing node power states; it adds or removes nodes.
:
Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Auto-Scaling.
Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on Day 2 Operations.
Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com Cluster API Documentation: https://cluster-api.sigs.k8s.io
NEW QUESTION # 80
An ecommerce company decides to apply an autoscaling configuration in its NKP cluster due to the fact that on holidays, they experience service drops due to a huge increase of simultaneous traffic.
Which statement best describes the configuration shown in the exhibit?
- A. The autoscaler could increase the number of nodes as needed, but never reduce it below 3.
- B. The autoscaler could have 15 or 3 nodes.
- C. The autoscaler could increase the number of nodes up to 3, but never reduce it below 15.
- D. The autoscaler could increase the number of nodes up to 15, but never reduce the number below 3.
Answer: D
NEW QUESTION # 81
A Platform Engineer is deploying a new Kubernetes application in Amazon Web Services (AWS) Elastic Container Service for Kubernetes (EKS) and Azure Kubernetes Service (AKS). The engineer's team has decided to use a custom image instead of the default images provided by AWS or Azure for their clusters. What functionality will the engineer lose in both AWS EKS and Azure AKS by choosing to use a custom image?
- A. Ability to use GPUs and persistent storage
- B. Built-in autoscaling and security capabilities
- C. Cluster networking and load balancing
- D. Native monitoring tools, logging, and alerting
Answer: B
NEW QUESTION # 82
......
Nutanix NCP-CN Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
NCP-CN Dumps for Pass Guaranteed - Pass NCP-CN Exam: https://passleader.briandumpsprep.com/NCP-CN-prep-exam-braindumps.html
