[Dec-2025] NCP-CN-6.10 Questions - Truly Beneficial For Your Nutanix Exam
Download Nutanix NCP-CN-6.10 Sample Questions
NEW QUESTION # 65
Which NKP tier is required for the FIPS Compliant Build feature?
- A. Starter
- B. Pro
- C. Enterprise
- D. Advanced
Answer: C
NEW QUESTION # 66
A Cloud Engineer is deploying an NKP Cluster in AWS. The environment is for testing purposes only, so the AWS team has requested it be deployed to use a minimal set of system resources to reduce cloud subscription fees. Which two parameters should be specified when initializing a Kommander installation, using the nkp install kommander command set? (Choose two.)
- A. --yaml
- B. --wait-timeout
- C. --request-timeout
- D. --init
Answer: B,D
NEW QUESTION # 67
A Platform Engineer is preparing machine images for NKP through the NIB or KIB process. What is the purpose of doing this?
- A. Creating a CAPI-compliant image for use as NKP cluster nodes
- B. Tagging the image to be used specifically for NKP
- C. Hardening an OS image with client-supplied hardening scripts
- D. Creating a custom user account for NKP admins to ensure access to NKP nodes
Answer: A
NEW QUESTION # 68
A company is developing a new web application consisting of several microservices, including:
Authentication service
User management service
Payment processing service
Each microservice is developed by different teams and requires an isolated environment for testing and development. To facilitate development and testing, the team decides to create a specific workspace in NKP. What should the team do to start this new creation?
- A. From the Cluster selection, select Add Cluster.
- B. From the workspace selection dropdown list in the top menu bar, select Add Workspace.
- C. From the workspace selection dropdown list in the top menu bar, select Create Workspace.
- D. From the Administration selection dropdown list in Infrastructure Providers, select Add Infrastructure Provider.
Answer: C
NEW QUESTION # 69
To keep an NKP cluster and applications healthy and drive productivity forward, a Platform Engineer needs to stay informed of all events occurring within the cluster. What component of kube-prometheus-stack will help the engineer to stay informed of these events in NKP?
- A. alertmanager
- B. prometheus-operator
- C. service monitors
- D. node-exporter
Answer: A
NEW QUESTION # 70
What common issues may cause a cluster detachment process to fail? (Select two)
- A. The cluster being paused in the infrastructure provider
- B. Mismatched Prometheus metrics retention settings
- C. Active platform applications still running on the cluster
- D. Incomplete uninstallation of workspace-level configurations
Answer: C,D
NEW QUESTION # 71
During a deployment of NKP, a Platform Engineer received an error indicating an issue with the bootstrap. While troubleshooting with support, the engineer noticed that the KUBECONFIG file was missing. How would the engineer recreate the bootstrap cluster and create a context file named bootstrap-cluster.conf?
- A. nutanix create bootstrap --kubeconfig bootstrap-cluster.conf
- B. d2iq create bootstrap --kubeconfig bootstrap-cluster.conf
- C. nkp create bootstrap --kubeconfig bootstrap-cluster.conf
- D. kubectl create bootstrap --kubeconfig bootstrap-cluster.conf
Answer: C
NEW QUESTION # 72
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 Cluster
Which tool would the administrator use to perform the deployment?
- A. NKP CLI
- B. OCP CLI
- C. NKP GUI
- D. kubectl CLI
Answer: A
NEW QUESTION # 73
A Cloud Engineer wishes to attach existing AKS clusters to a newly deployed NKP management cluster.
What should the engineer consider specific to attaching these types of clusters to NKP?
- A. Cert-manager, which is included in NKP, is deployed by default on AKS clusters.
- B. A separate service account should be created for them because their kubeconfig files are not usable out-of-box by NKP Kommander.
- C. AKS nodes do not use containerd as its container runtime. Therefore it should be deployed to each of the nodes in the AKS clusters prior to attaching them.
- D. AKS does not have the kubelet installed on them. Therefore the KIB-prep process should be performed on each of the nodes in the AKS clusters prior to attaching them.
Answer: B
NEW QUESTION # 74
An administrator is provisioning an NKP cluster. After the VM creation task, the error shown in the exhibit is produced.
What could be the reason?
- A. VM does not have the Linux version.
- B. Private registry software or version is not the recommended.
- C. NKP Software is not loaded in the registry.
- D. VM doesn't have communication to the registry.
Answer: D
NEW QUESTION # 75
A corporate IT team provides Kubernetes clusters for three groups within the company:
Fin VD
Fin Insurance
Fin Travel
The IT group needs to federate policy for all Kubernetes clusters from a single pane of glass, but separate the Kubernetes clusters according to the group that uses them. How should the IT team license and configure their NKP environment to satisfy these requirements?
- A. NKP Pro for project management, creating three projects and assigning the corresponding Kubernetes cluster to each project.
- B. NKP Starter for Kubernetes management, creating Kubernetes clusters for every company.
- C. NKP Pro for workspace management, creating three workspaces and assigning the corresponding Kubernetes cluster to each workspace.
- D. NKP Ultimate for fleet management, creating three workspaces and assigning the corresponding Kubernetes cluster to each workspace.
Answer: D
NEW QUESTION # 76
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 apply -f fluent-bit-overrides.yaml
- B. kubectl get namespaces
- C. kubectl get helmreleases -n ${PROJECT_NAMESPACE}
- D. kubectl edit helmreleases -n ${PROJECT_NAMESPACE}
Answer: C
NEW QUESTION # 77
Which NKP-supported infrastructure will not receive CAPI components when an NKP cluster is deployed to it?
- A. GCP
- B. Nutanix
- C. AKS
- D. vSphere
Answer: C
NEW QUESTION # 78
What is a key troubleshooting step if Velero fails to complete a backup in NKP?
- A. Inspect Velero pod logs and event messages
- B. Check the logging stack status
- C. Restart the Kommander UI
- D. Recreate the cluster
Answer: A
NEW QUESTION # 79
A dev team needed to optimize their logging system to be more robust, because the CPU and memory limits were insufficient, which caused delays in log collection and processing during times of high demand.
After a deep performance analysis, they decided to increase the CPU limits from 1 to 4 and the memory from 1000Mi to 4Gi.
Which ConfigMap should the development team run with custom resource requests and limit values for fluentd?
- A. bashCopy
[nutanix@nkp-boot ~]$ cat <<EOF > configmap.yamlapiVersion: v1kind:
ConfigMapmetadata:name:
logging-operator-logging-overridesnamespace: kommanderdata:values.yaml:
|fluentd:resources:limits:cpu: 4memory: 4Girequests:cpu: 4memory: 4GiEOF - B. bashCopy
[nutanix@nkp-boot ~]$ cat <<EOF > configmap.yamlapiVersion v1kind ConfigMapmetadataname logging-operator-logging-overridesnamespace kommanderdatavalues.yaml
|fluentdresourceslimitscpu 4EOFvalues.yaml |fluentdresourceslimitscpu 4memory 4Girequestscpu
1memory 1000MiEOF - C. bashCopy
[nutanix@nkp-boot ~]$ cat <<EOF > configmap.yamlapiVersion v1kind ConfigMapmetadataname logging-operator-logging-overridesnamespace kommanderdatavalues.yaml
|fluentdresourceslimitscpu 1memory 1000Mirequestscpu 4memory 4GiEOF - D. bashCopy
[nutanix@nkp-boot ~]$ cat <<EOF > configmap.yamlapiVersion: v1kind:
ConfigMapmetadata:name:
logging-operator-logging-overridesnamespace: kommanderdata:values.yaml:
|fluentdresourceslimitscpu 4memory 1000Mirequestscpu 1memory 4GiEOF
Answer: A
NEW QUESTION # 80
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. kubelet and containerd, in /opt/nkp
- C. kubectl and kubelet in /opt/nkp
- D. kubectl and kubelet in /var/nkp
Answer: A
NEW QUESTION # 81
Which option is enabled with the NKP Pro licensing tier?
- A. Insights
- B. Kubernetes Dashboard
- C. Fleet Management
- D. AI OPS
Answer: C
NEW QUESTION # 82
A Platform Engineer needs to create an NKP cluster on vSphere infrastructure, using the vSphere provisioning method. The cluster needs to have 3 worker node pools:
First node pool should consist of 6 worker nodes
Second node pool should consist of 3 worker nodes
Third node pool should consist of 3 worker nodes
Additionally, the worker nodes in the first node pool should be set to 10 CPUs, the second node pool workers should be set to 8 CPUs, and the third node pool workers should be set to 6 CPUs.
What is the proper way to create the NKP cluster using the NKP CLI?
- A. First, execute the nkp create cluster vsphere command, including the following parameters:-- worker-replicas 6--worker-cpus 10Then, execute the nkp create nodepools vsphere command, including the following parameters:--replicas 3,3--cpus 8,6
- B. When executing the nkp create cluster vsphere command, include the following parameters:-- node-pools 3--worker-replicas 6,3,3--worker-cpus 10,8,6
- C. First, execute the nkp create cluster vsphere command, including the following parameters:-- worker-replicas 6--worker-cpus 10Then, execute the nkp create nodepool vsphere command, including the following parameters:--worker-replicas 3--worker-cpus 8Then, execute the nkp create nodepool vsphere command, including the following parameters:--worker-replicas 3--worker-cpus
6 - D. First, execute the nkp create cluster vsphere command, including the following parameters:-- worker-replicas 6--worker-cpus 10Then, execute the nkp create nodepool vsphere command, including the following parameters:--replicas 3--cpus 6
Answer: C
NEW QUESTION # 83
A Platform Engineer manages an NKP environment and is preparing a machine image to become an NKP cluster node. Which statement is correct regarding the default node preparation process?
- A. Ansible is used to make the OS image CAPI-compliant for use as an NKP node.
- B. Terraform is utilized to clone an existing OS image for use as an NKP node.
- C. Goss is used to harden the OS image for use as an NKP node.
- D. Packer is used to make the OS image CAPI-compliant for use as an NKP node.
Answer: D
NEW QUESTION # 84
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. Configure a new IAM role specifically for NKP.
- B. Create a tenant on AWS.
- C. Create a secret containing the static AWS S3 credentials.
- D. Configure an IP address corresponding to AWS storage.
Answer: C
NEW QUESTION # 85
A Platform Engineer is preparing an AWS instance using KIB for becoming an NKP cluster node.
During the process, the source AMI is successfully cloned, and multiple preparation steps have occurred against the cloned AMI, such as gathering OS-release facts and uploading image bundles to it. However, the process encounters an error and ultimately fails. What is one troubleshooting step the engineer can perform that may help identify the root cause of the issue?
- A. Rerun the KIB command, including the parameter to instruct Packer not to automatically delete the cloned AMI on error. This way the OS image can be accessed and further inspected.
- B. Rerun the KIB command, including the parameter to set the verbosity level to debug, so that all issued AWS CLI commands and their returns are included and added to an exported log file for review.
- C. Rerun the KIB command, including the pause parameter, so that each command in the KIB-prep sequence and its return can be reviewed in detail before allowing the prep process to continue.
- D. Rerun the KIB command, including the parameter to instruct Ansible not to automatically delete the cloned AMI on error. This way the OS image can be accessed and further inspected.
Answer: B
NEW QUESTION # 86
A Platform Engineer is deploying an NKP cluster within an air-gapped AWS environment.
However, after an infrastructure planning session with the network team, it's been determined that the default CIDR block range that is used by pods on NKP clusters is already in use in their environment. How can the engineer ensure there are no collisions between NKP pod traffic and the existing network using that subnet range?
- A. Because the environment is air-gapped, there will be no network traffic collision concerns and no adjustment needs to be made to the pod network CIDR block range.
- B. Create the NKP cluster's manifest using the nkp create cluster command set and include the pod CIDR block range parameter when generating the cluster manifest.Deploy the NKP cluster manifest.
- C. Create an NKP infrastructure provider for AWS in the NKP UI.When deploying the NKP cluster through the UI, specify a unique CIDR block range for the pod network field in the Network section of the Create Cluster page.
- D. Create an NKP infrastructure provider for AWS in the NKP UI.Select the Advanced Options button from the Network section of the Create Cluster page and specify a unique CIDR block range within the pod network field.
Answer: B
NEW QUESTION # 87
......
Truly Beneficial For Your Nutanix Exam: https://measureup.preppdf.com/Nutanix/NCP-CN-6.10-prepaway-exam-dumps.html