⏰ Hurry! Limited-Time 20% Savings on Premium Certification Materials - Coupon code: Club20
Certs Club
See all results for ""
Home Exams
CRISC ISACA CISSP ISC2 200-301 Cisco SY0-701 CompTIA AZ-104 Microsoft AI-900 Microsoft AIGP IAPP 1Z0-1067-26 Oracle View All Exams →
Sign in Get Started

Nutanix Certified Professional - Cloud Native v6.10 NCP-CN Exam Questions

Download Exam View Entire Exam
Page: 1 / 1
Question #1 (Topic: Demo Questions)

A company recently deployed NKP. A Platform Engineer was asked to attach the existing Amazon EKS. A workspace and project were created accordingly, and resource requirements were met. What does the engineer need to do first to prepare the EKS clusters?

A.

Configure a ConfigMap according to EKS configuration.


B.

Create a service account with cluster-admin permissions.


C.

Configure HAProxy to get connected to EKS clusters.


D.

Deploy cert-manager in the EKS clusters.

Correct Answer: B
Explanation:

Attaching an existing Amazon EKS cluster to NKP for fleet management involves integrating the cluster into NKP’s management plane, which requires specific preparatory steps. The NKPA course outlines that the first step is to create a service account with cluster-admin permissions in the EKS cluster. This service account is used by NKP to authenticate and manage the cluster, enabling operations like monitoring, scaling, and application deployment.

The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide explains: “To attach an external Kubernetes cluster, such as Amazon EKS, to NKP, a service account with cluster-admin role bindings must be created to allow NKP to interact with the cluster’s API server.” The service account is configured with a token that NKP uses to authenticate requests. The NKPA course provides detailed steps, including creating the service account, assigning the cluster-admin ClusterRole, and generating a token for NKP integration. This step is critical to ensure NKP has the necessary permissions to manage the EKS cluster.

Incorrect Options :

    A. Configure a ConfigMap according to EKS configuration : While ConfigMaps may be used for specific configurations, they are not the first step for attaching an EKS cluster. The NKPA course prioritizes service account creation.

    C. Configure HAProxy to get connected to EKS clusters : HAProxy is a load balancer, not required for attaching EKS clusters to NKP. EKS uses AWS-native load balancers, and NKP connects via the Kubernetes API.

    D. Deploy cert-manager in the EKS clusters : Cert-manager is used for certificate management, not a prerequisite for attaching EKS clusters. The NKPA course does not list it as a required step.

[:, Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Fleet Management., Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on Attaching External Clusters., Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com, Amazon EKS Documentation: https://docs.aws.amazon.com/eks, ]
Question #2 (Topic: Demo Questions)

Prior to implementing NKP, a company had created a number of Kubernetes (K8s) clusters using kubeadm. While they are deploying new managed clusters via NKP, the company does not wish to migrate workloads from these pre-existing native K8s clusters over to new NKP clusters just yet.

What are the requirements to have these clusters attached to their NKP management cluster?

A.

The version of the K8s clusters must be within N - 1 of the Kubernetes version of the NKP management cluster.


B.

The NKP management cluster must be able to reach the services and api-server of the target cluster.


C.

The version of the K8s clusters must match the Kubernetes version of the NKP management cluster.


D.

An NKP management cluster admin account must be established on the K8s clusters.

Correct Answer: B
Explanation:

As per the NKPA 6.10 documentation , the primary requirement for attaching external (self-managed) Kubernetes clusters to NKP is network connectivity . Specifically, the NKP management cluster must be able to communicate with the Kubernetes API server and relevant services of the target cluster. This allows NKP to collect metrics, perform health checks, and manage the attached cluster through Kommander and associated tools.

Exact extract:

“For attaching existing Kubernetes clusters, ensure the NKP management cluster can reach the Kubernetes API server of the target cluster and that the kubeconfig used has sufficient permissions.”

There is no requirement that the Kubernetes versions be exactly matched or within N-1, nor that an NKP admin account be directly established on the target clusters; the connectivity and valid kubeconfig file are the essential requirements.

[Reference:, Nutanix Kubernetes Platform Administration (NKPA) 6.10 – “Attaching External Clusters”, NCP-CN 6.10 Study Guide – “External Cluster Integration”, ]
Question #3 (Topic: Demo Questions)

Which CAPI provisioning method requires creating an inventory file of the servers to become NKP nodes?

A.

AWS (CAPA)


B.

Nutanix (CAPX)


C.

Pre-provisioned (CAPPP)


D.

vSphere (CAPV)

Correct Answer: C
Explanation:

According to the NKPA 6.10 documentation , the Pre-provisioned infrastructure provider (CAPPP) requires the user to provide an inventory file of the servers that will become the cluster nodes. This inventory file contains connection information (IP addresses, credentials, etc.) for each pre-provisioned node, enabling the Cluster API to connect and configure these servers directly during cluster creation.

[Reference:, Nutanix Kubernetes Platform Administration (NKPA) 6.10 – “CAPPP (Pre-Provisioned) Overview”, NCP-CN 6.10 Study Guide – “Inventory Files for Pre-Provisioned Infrastructure”, =======]
Question #4 (Topic: Demo Questions)

A Platform Engineer is getting started with NKP and has created a bastion host with all needed prerequisites.

How should the engineer install Kommander?

A.

AWS CLI


B.

Terraform

C.

Ansible


D.

NKP CLI

Correct Answer: D
Explanation:

As per the NKPA 6.10 documentation , the standard and supported approach for installing Kommander on an NKP cluster is using the NKP CLI . The CLI provides commands for deploying Kommander and associated platform components as part of the cluster lifecycle management workflow.

Key Reference:

“The recommended approach to deploy Kommander is by using the nkp CLI, which ensures compatibility and streamlined installation with the rest of the Nutanix Kubernetes Platform stack.”

[Reference:, Nutanix Kubernetes Platform Administration (NKPA) 6.10 – “Installing Kommander with NKP CLI”, NCP-CN 6.10 Study Guide – “Kommander Installation and Management”, , , ]
Question #5 (Topic: Demo Questions)

A technology company has decided to migrate its infrastructure to NKP to improve the scalability and management of its applications. After a successful initial implementation, the operations team faces a new challenge of validating the HelmReleases to ensure that all applications are running correctly and avoid problems in production. Which command should the company execute to know the right status of their HelmReleases?

A.

kubectl get namespaces


B.

kubectl get helmreleases -n ${PROJECT_NAMESPACE}


C.

kubectl edit helmreleases -n ${PROJECT_NAMESPACE}


D.

kubectl apply -f fluent-bit-overrides.yaml

Correct Answer: B
Explanation:

NKP uses Helm and Flux for application deployment, where applications are managed as HelmReleases , a custom resource that defines Helm chart deployments. The NKPA course explains that to validate the status of HelmReleases, administrators can use the kubectl command to query these resources. The correct command is kubectl get helmreleases -n ${PROJECT_NAMESPACE} , which lists all HelmReleases in the specified project namespace, showing their status (e.g., Ready, Failed) and other details like chart version and reconciliation status.

The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: “To check the status of HelmReleases in NKP, use kubectl get helmreleases -n < namespace > to view the current state of application deployments managed by Flux.” This command helps the operations team verify that applications are running correctly and identify any issues in production.

Incorrect Options :

    A. kubectl get namespaces : This lists namespaces, not HelmReleases or their status.

    C. kubectl edit helmreleases -n ${PROJECT_NAMESPACE} : This edits HelmRelease resources, not displays their status.

    D. kubectl apply -f fluent-bit-overrides.yaml : This applies a configuration for Fluent Bit, unrelated to HelmRelease status.

[:, Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Application Management., Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on Day 2 Operations., Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com, Flux Documentation: https://fluxcd.io/docs/components/helm, ]
Download Exam
Page: 1 / 1
Next Page