Courseiva

KCNA · domain

Cloud Native Application Delivery

Practise KCNA NAT and PAT questions covering address translation types, inside/outside interface roles, static vs dynamic vs PAT, and troubleshooting missing or incorrect translations.

89 questions20 easy45 medium24 hard

Focused practice

Practice Cloud Native Application Delivery questions

Scored sessions drawing only from this domain — pick a length below.

Start 20-question practice test →

What this domain covers

What to know about Cloud Native Application Delivery

Cloud concepts questions usually test the service model (IaaS/PaaS/SaaS) and deployment model (public/private/hybrid/community) appropriate for a given scenario.

IaaS, PaaS and SaaS responsibilities and examples.

Public, private, hybrid and community cloud deployment models.

On-premises vs cloud trade-offs: cost, control, scalability.

How cloud connectivity options (VPN, Direct Connect, ExpressRoute) work.

Why learners struggle

Why Cloud Native Application Delivery questions are commonly missed

NAT questions are missed when learners confuse the four address types (inside local, inside global, outside local, outside global) or misapply the interface direction. A translation rule can look correct but still fail if the ACL, interface, or direction is wrong.

  • ·Inside local vs inside global — inside local is the private source, inside global is the translated public address
  • ·PAT overloads — many sources share one public IP using unique port numbers
  • ·Interface direction — ip nat inside and ip nat outside must be on the correct interfaces
  • ·Static NAT vs dynamic NAT vs PAT — each serves a different use case
  • ·The NAT ACL identifies traffic to translate, not traffic to permit or deny
  • ·A missing translation can look like a routing problem if the interfaces are misconfigured

Watch out for

Common Cloud Native Application Delivery exam traps

  • IaaS gives you infrastructure control; SaaS gives you only the application.
  • Hybrid cloud combines on-premises and public cloud — not two public clouds.
  • Cloud does not automatically mean cheaper or more secure.
  • Management responsibility shifts with each service model (IaaSPaaSSaaS).

Question index

All Cloud Native Application Delivery questions (89)

Click any question to see the full explanation, or start a practice session above.

1

Which command is used to rollback a Helm release to a previous revision?

Easy
2

In the context of DORA metrics, which metric measures how often an organization successfully releases to production?

Medium
3

During a canary deployment using Argo Rollouts, how does the tool determine the success of the canary before promoting it?

Medium
4

Which THREE of the following are features of Helm that facilitate release management? (Choose three.)

Hard
5

An organization uses Flux with Kustomize to manage their Kubernetes applications. They want to automatically update their deployment when a new container image is pushed to the registry. Which Flux component should they use?

Hard
6

Drag and drop the steps to scale a Kubernetes Deployment horizontally into the correct order.

Medium
7

A team is deploying a microservice application on Kubernetes. They want to ensure that during rolling updates, the new version of the service receives traffic only after the readiness probe succeeds. However, they observe that the old pods are terminated before the new pods are ready, causing a brief downtime. Which configuration change should they make to the Deployment to prevent this?

Hard
8

Which TWO statements about GitOps are correct?

Medium
9

Which deployment strategy updates pods incrementally, replacing old pods with new ones while ensuring availability?

Easy
10

What is the primary purpose of a continuous integration (CI) pipeline in cloud native application delivery?

Easy
11

A team wants to use feature flags to control the rollout of a new feature in a Kubernetes-deployed microservice. Which tool is specifically designed for managing feature flags in cloud-native applications?

Hard
12

A user reports that a ConfigMap update is not reflected in running pods. Which action should be taken to ensure pods receive the updated configuration?

Medium
13

A team uses Helm to manage their Kubernetes applications. They need to upgrade a release and want to reuse the values from the previous release while overriding a specific value. Which helm command should they use?

Medium
14

A Kubernetes cluster runs a critical application that must be updated with zero downtime. The team wants to gradually shift traffic from the old version to the new version over a period of time. Which deployment pattern is MOST appropriate?

Hard
15

Which TWO of the following are capabilities of ArgoCD? (Choose two.)

Medium
16

Which Helm command is used to upgrade a release to a newer version of a chart?

Easy
17

In a Helm chart, which file is used to define default configuration values that can be overridden by users during installation?

Medium
18

Which TWO statements are true about Kustomize? (Choose 2)

Medium
19

What is the primary purpose of a container registry in the CI/CD pipeline?

Easy
20

What is the purpose of values.yaml in a Helm chart?

Easy
21

In Kustomize, what is the purpose of an overlay?

Medium
22

A DevOps team wants to implement GitOps for their Kubernetes cluster. Which tool is specifically designed for Kubernetes GitOps and can automatically sync the cluster state with a Git repository?

Medium
23

Which DORA metric measures the percentage of deployments that cause a failure in production?

Medium
24

Which TWO of the following are benefits of using Helm for application delivery?

Easy
25

Which TWO of the following are characteristics of Kustomize?

Medium
26

Which TWO statements are true about ArgoCD's health status?

Medium
27

Which THREE are examples of DORA metrics used to measure DevOps performance? (Choose 3)

Medium
28

In Flux, which controller is responsible for reconciling the desired state defined in a Git repository to the cluster?

Medium
29

Drag and drop the steps to create a ConfigMap from a file in Kubernetes into the correct order.

Medium
30

A team uses ArgoCD with a Git repository that contains Helm charts. They want ArgoCD to automatically sync when a new image tag is pushed to the container registry. Which approach should they use?

Hard
31

A team uses Flux with the Source Controller and Kustomize Controller. They update a YAML file in Git to change a Deployment's replica count. What describes the synchronization flow?

Hard
32

Drag and drop the steps to troubleshoot a Pod stuck in CrashLoopBackOff into the correct order.

Medium
33

Which TWO of the following are deployment patterns that can be used to update applications with minimal downtime? (Choose two.)

Medium
34

A microservice application is experiencing high latency during traffic spikes. The team identifies that the database connection pool is exhausted. They want to implement a pattern that helps decouple the microservice from direct database connections and smooth out traffic bursts. Which design pattern should they apply?

Hard
35

In GitOps with ArgoCD, what does 'self-healing' refer to?

Easy
36

A team uses Argo Rollouts for progressive delivery. They configure a canary rollout with a traffic split of 20% to the new version. After verification, the rollout automatically increases traffic to 100%. Which Argo Rollout manifest field controls this gradual traffic increase?

Hard
37

Which DORA metric measures the percentage of deployments that cause a failure in production?

Easy
38

In a blue-green deployment strategy, at any given time, only one environment (blue or green) is active. What is the primary advantage of this approach?

Medium
39

In GitOps with ArgoCD, what happens when the desired state in Git differs from the live state in the cluster?

Medium
40

What is the primary purpose of a container registry in a CI/CD pipeline?

Easy
41

In Kustomize, what is the purpose of an overlay?

Medium
42

Match each Kubernetes storage concept to its description.

Medium
43

A startup wants to minimize downtime during application updates in Kubernetes. Which deployment strategy should they use?

Easy
44

Drag and drop the steps to create a Kubernetes deployment using kubectl into the correct order.

Medium
45

A container image is being pushed to a private registry. What is the correct workflow?

Medium
46

Which THREE of the following are key capabilities of progressive delivery tools like Argo Rollouts?

Hard
47

What is Helm's role in Kubernetes?

Easy
48

In a CI pipeline, image scanning is integrated to detect vulnerabilities. What is the best practice when a critical vulnerability is found in a base image?

Hard
49

What is the primary advantage of using Helm to package a Kubernetes application?

Easy
50

A financial services company runs a critical trading application on Kubernetes. The application is deployed as a Deployment with 3 replicas. Each pod exposes metrics on port 8080 and uses a ConfigMap to load configuration. Recently, after a configuration change via a ConfigMap update, two of the three pods started crashing with an out-of-memory (OOM) error, while the third pod continues to run fine. The team verified that the ConfigMap was updated correctly and that the application code did not change. The pods have resource limits set: memory limit of 512Mi and request of 256Mi. The application's memory usage before the change was around 200Mi. The new configuration increases the in-memory cache size. The team suspects the issue is related to the configuration change. What is the best course of action?

Hard
51

A Kubernetes Deployment is configured with 'strategy.type: RollingUpdate'. The team wants to ensure that during an update, no more than 25% of pods are unavailable at any time. Which specification should be added?

Hard
52

Which TWO actions can improve the DORA metric 'Mean Time to Recovery (MTTR)'?

Medium
53

What is the primary purpose of a container registry in a CI/CD pipeline?

Easy
54

Your organization runs a microservices application on a Kubernetes cluster with 5 worker nodes (each with 4 vCPU, 16GB RAM). The application consists of 20 microservices, each deployed as a Deployment with 3 replicas. Recently, after a new microservice 'inventory' was deployed with resource requests of 2 CPU and 4GB memory per pod, the cluster started experiencing pod scheduling failures. Many existing pods are in 'Pending' state with events indicating 'Insufficient cpu' or 'Insufficient memory'. The cluster has cluster autoscaling enabled (node pool ranging from 3 to 10 nodes), but new nodes are not being added quickly enough, and the existing nodes are heavily utilized. You need to resolve the scheduling failures while ensuring the inventory service can scale. Which course of action should you take?

Hard
55

Which THREE of the following practices are essential for a secure cloud native CI/CD pipeline?

Hard
56

An application deployment in Kubernetes uses a Deployment object. During a rolling update, the new ReplicaSet fails to become healthy. What is the default behavior of the Deployment controller?

Medium
57

In a CI/CD pipeline, what is the difference between continuous delivery and continuous deployment?

Easy
58

Which THREE of the following are important security practices in a container image CI/CD pipeline?

Medium
59

A team uses Helm to manage a complex application. They want to perform a release upgrade but keep a record of the previous release so they can roll back if needed. Which Helm command should they use?

Hard
60

Match each CNCF project to its primary function.

Medium
61

Refer to the exhibit. The deployment above is created, but the pods are not receiving traffic from the associated Service. The Service selector matches 'app: web'. The Service endpoints list is empty. What is the most likely cause?

Easy
62

Which TWO statements are true about Kubernetes Deployments?

Medium
63

Which TWO of the following are features of ArgoCD that support GitOps principles?

Hard
64

What is the primary purpose of continuous integration (CI) in a cloud-native application delivery pipeline?

Easy
65

Which TWO of the following are benefits of using Helm for managing Kubernetes applications?

Medium
66

When using Kustomize, how do you apply a common label to all resources in the base?

Hard
67

Which tool can be used to implement feature flags in a Kubernetes-native progressive delivery setup?

Medium
68

Which DORA metric measures how quickly code changes are deployed to production?

Medium
69

Which TWO of the following are benefits of implementing progressive delivery techniques (e.g., canary releases)?

Easy
70

A company is adopting a GitOps workflow for their Kubernetes deployments. They want to ensure that the cluster state always matches the desired state defined in a Git repository. Which tool is specifically designed for this purpose?

Medium
71

Which of the following are core components of the Flux GitOps toolkit?

Hard
72

A CI/CD pipeline includes image scanning. What is the primary security benefit of scanning container images in the CI phase?

Medium
73

Which THREE are common features of progressive delivery?

Hard
74

A team wants to implement a canary deployment strategy for their Kubernetes application. Which tool is specifically designed for progressive delivery and can be used to automate canary rollouts?

Medium
75

A developer runs 'helm upgrade --install myapp ./mychart' and sees the release status is 'failed'. What is the most likely cause?

Medium
76

A DevOps team wants to adopt a deployment pattern where a new version of an application is gradually rolled out to a small subset of users before full deployment. Which progressive delivery technique should they use?

Medium
77

A DevOps team uses Helm to manage Kubernetes applications. They want to ensure that sensitive data (e.g., database passwords) is not stored in plaintext in the Helm chart or in the cluster's ConfigMaps/Secrets. Which TWO practices should they adopt? (Choose two.)

Medium
78

Match each Kubernetes resource to its primary purpose.

Medium
79

A team wants to implement GitOps for their Kubernetes workloads using Argo CD. They have multiple environments (dev, staging, prod) in separate clusters. What is the best practice for structuring the Git repository?

Hard
80

A development team wants to implement GitOps for their Kubernetes deployments using ArgoCD. Which ArgoCD component is responsible for monitoring the Git repository for changes and syncing the desired state to the cluster?

Medium
81

A team uses Flux to manage GitOps. Which Flux component is responsible for reconciling the cluster state with the desired state defined in a Git repository?

Medium
82

Which THREE of the following are DORA metrics?

Medium
83

A DevOps engineer notices that after a Helm upgrade, the new pods are crash looping with 'ImagePullBackOff'. What is the most likely cause?

Medium
84

A CI pipeline scans container images for vulnerabilities. The scan report shows a critical vulnerability in a base image layer. What is the most efficient way to remediate this issue?

Hard
85

Which THREE of the following are core components of Flux?

Hard
86

In a GitOps workflow, a team uses ArgoCD. A developer manually changes a Deployment's replica count in the cluster via kubectl. ArgoCD has self-healing enabled. What will happen?

Hard
87

Match each Kubernetes networking concept to its description.

Medium
88

What is the purpose of container image scanning in a CI/CD pipeline?

Easy
89

A team is deploying a new microservice that processes sensitive user data. They want to ensure that secrets such as database passwords are not exposed in the container image or environment variables. Which approach should they use?

Easy

Frequently asked questions

What does the Cloud Native Application Delivery domain cover on the KCNA exam?
Cloud concepts questions usually test the service model (IaaS/PaaS/SaaS) and deployment model (public/private/hybrid/community) appropriate for a given scenario.
How many questions are in this domain?
This page lists all 89 Cloud Native Application Delivery questions in the KCNA question bank. The actual exam draws from this domain proportionally to its weighting in the official exam blueprint.
What is the best way to practise this domain?
Start with a short focused session (10 questions) to identify gaps, then work through explanations. Repeat with a longer session once the weak areas feel solid.
Can I practise only Cloud Native Application Delivery questions?
Yes — the session launcher on this page filters questions to this domain only. Choose any session length for inline explanations and scoring.
cncf-kcna CNCF-KCNA kcna app delivery Practice Questions