NCP-CN認定資格試験 & NCP-CN試験問題解説集あなたはどのように毎日を過ごしますか。もちろん、人によって違う方式で毎日過ごします。NCP-CN試験の為に、毎日長い時間がかからなければなりません。しかし、NCP-CN問題集を利用すれば、たくさんの時間を節約できます。そして、NCP-CN問題集は有効的で、大勢のこの問題集を利用したお客様はNCP-CN試験に合格しました。信頼に値する資料です。 Nutanix Certified Professional - Cloud Native v6.10 認定 NCP-CN 試験問題 (Q22-Q27):質問 # 22
An organization is setting up a new set of NKP clusters for R&D. The R&D director requires full admin access for the team on infrastructure dedicated to R&D.
What is the proper method for the engineer to ensure these objectives are met?
A. Create an 'R&D' NKP connector and infrastructure providerCreate an 'R&D' NKP group and assign it admin-level rolesAssign the 'R&D' NKP group to the 'R&D' NKP connectorDeploy the NKP clusters into the 'R&D' workspace
B. Create an 'R&D' NKP workspaceCreate an 'R&D' infrastructure provider in this workspaceCreate an 'R&D' NKP group for the R&D team members and assign admin-level roles withinDeploy the NKP clusters into the 'R&D' workspace
C. Create an 'R&D' NKP connector and infrastructure providerCreate an 'R&D' NKP group and assign it admin-level rolesAssign the 'R&D' NKP group to the 'R&D' NKP infrastructure providerDeploy the NKP clusters into the 'R&D' workspace
D. Create an 'R&D' NKP workspace and project within this workspaceCreate an NKP infrastructure provider in the 'R&D' NKP projectCreate an 'R&D' NKP group for the R&D team members and assign admin-level roles within this projectDeploy the NKP clusters into the 'R&D' workspace
正解:B
質問 # 23
A Platform Engineer is preparing to deploy an NKP cluster in an air-gapped environment. The NKP cluster will be deployed on Nutanix infrastructure using the CAPI Nutanix provisioner (CAPX). The engineer has decided to create the bootstrap cluster first, then NIB-prep an Ubuntu 22.04 OS image that the Linux engineering team has provided in Prism Central. After that, the engineer will deploy the NKP cluster.
However, during the first step of creating a bootstrap cluster, the engineer received the error shown in the exhibit. What could be the reason?
A. The CAPI provisioning method needs to be specified as part of the command nkp create bootstrap nutanix.
B. The nkp create bootstrap command needs to be executed as root.
C. The bootstrap cluster image needs to be loaded prior to creating the bootstrap cluster.
D. The Ubuntu 22.04 OS image needs to be NIB-prepped prior to creating the bootstrap.
正解:C
解説:
The exhibit indicates an error during the creation of a bootstrap cluster using the nkp create bootstrap command in an air-gapped environment. The NKPA course explains that a bootstrap cluster is a temporary Kubernetes cluster used to initialize Cluster API (CAPI) components for provisioning the target NKP cluster.
In an air-gapped environment, all required resources, including container images, must be available locally since there is no Internet access to pull them from public registries.
The most likely reason for the error is that the bootstrap cluster image needs to be loaded prior to creating the bootstrap cluster (Option B). The course specifies that in air-gapped deployments, the bootstrap cluster image (typically a kind or k3s image used by CAPI) must be pre-loaded into a local container registry or the bastion host before running nkp create bootstrap. This image is part of the Air-Gapped Bundle provided by Nutanix, which includes all necessary container images for NKP deployment. Without pre-loading this image, the nkp create bootstrap command fails because it cannot pull the required image.
The Nutanix Cloud Native (NCP-CN) 6.10 Study Guide states: "In an air-gapped NKP deployment, ensure the bootstrap cluster image (e.g., kindest/node) is loaded into a local registry or host before executing nkp create bootstrap, as the command requires this image to create the temporary cluster." The engineer must extract the bootstrap image from the Air-Gapped Bundle, load it using docker load or similar, and configure the local registry to make it accessible during the bootstrap process.
Incorrect Options:
* A. The CAPI provisioning method needs to be specified as nkp create bootstrap nutanix: The nkp create bootstrap command does not require a provisioning method like nutanix at this stage; the provider (e.g., CAPX for Nutanix) is specified during the actual cluster creation (nkp create cluster), not bootstrap creation.
* C. The Ubuntu 22.04 OS image needs to be NIB-prepped prior to creating the bootstrap: The Ubuntu 22.04 image is for the target NKP cluster nodes, not the bootstrap cluster, which uses a pre- built image (e.g., kind). NIB-prepping this image is a later step.
* D. The nkp create bootstrap command needs to be executed as root: While some commands may require elevated privileges, the NKPA course does not specify that nkp create bootstrap must be run as root. The error is more likely related to missing images in an air-gapped setup.
:
Nutanix Kubernetes Platform Administration (NKPA) Course, Section on Bootstrap Cluster Creation in Air- Gapped Environments.
Nutanix Cloud Native (NCP-CN) 6.10 Study Guide, Chapter on Air-Gapped Deployments.
Nutanix Cloud Bible, NutanixKubernetesPlatform Section: https://www.nutanixbible.com Cluster API Documentation: https://cluster-api.sigs.k8s.io
質問 # 24
In which unit are NKP licenses able to be obtained?
A. CPU Cores
B. CPU Sockets
C. Flash
D. TiBs
正解:A
質問 # 25
NKP Starter is bundled with which entitlement?
A. NCM Pro
B. NCI Pro
C. NCI Starter
D. NCM Starter
正解:C
解説:
According to the NKPA 6.10 documentation and Nutanix licensing details, NKP Starter is bundled with the NCI Starter entitlement. This basic licensing tier includes essential capabilities for deploying and managing Kubernetes clusters within a Nutanix environment.
Key reference:
"NKP Starter is included with NCI Starter, providing foundational Kubernetes cluster lifecycle management features for small-scale or starter deployments." Reference:
Nutanix Kubernetes Platform Administration (NKPA) 6.10 - "NKP Licensing and Entitlements" NCP-CN 6.10 Study Guide - "NKP Licensing Overview"
質問 # 26
A Platform Engineer is running a Kubernetes cluster version 1.28.1 on AWS that needs to be upgraded to version 1.29.9. This cluster was deployed with Nutanix NKP. Which two actions should the engineer take to complete this requirement? (Choose two.)
A. Upgrade Control Planes with nkp update controlplane aws --cluster-name=${CLUSTER_NAME} --ami AMI_ID --kubernetes-version=v1.29.9
B. Upgrade Workers with nkp update nodepool aws ${NODEPOOL_NAME} --cluster-name=${CLUSTER_NAME} --kubernetes-version=v1.29.9
C. Upgrade Workers with nkp upgrade nodepool aws ${NODEPOOL_NAME} --cluster-name=${CLUSTER_NAME} --kubernetes-version=v1.29.9
D. Upgrade the Cluster with nkp update cluster aws --cluster-name=${CLUSTER_NAME} --ami AMI_ID --kubernetes-version=v1.29.9