Cloud Native Computing Foundation free flashcards

Free KCNA flashcards

8 real KCNA flashcards, sampled from all 4 domains the exam tests, heaviest first. Each concept card is paired with the misconception card built from the tempting wrong answer - the trap most decks skip. No account, no card.

The full deck has 906 flashcards, and a free account opens 40 of them across every domain. For a domain-by-domain breakdown and a study plan, read the KCNA study guide.

ConceptKubernetes Fundamentals

Which Kubernetes workload object guarantees exactly one copy of a Pod on every eligible node, including nodes that join later?

A DaemonSet. Its controller watches the set of nodes and reconciles one matching Pod per eligible node, adding Pods when nodes join and removing them when nodes leave, which is why it fits cluster-wide agents like log or metrics collectors.

MisconceptionKubernetes Fundamentals

A Deployment can run one Pod on every node because it keeps a fixed number of identical replicas across the cluster.

A Deployment maintains a chosen replica count and lets the scheduler place those Pods anywhere, so it is tempting for any run-this-everywhere need, but it cannot guarantee one Pod per node and will not react to new nodes joining.

ConceptContainer Orchestration

A workload only needs a stable internal address and DNS name reachable from within the cluster, never from outside. Which Service type gives this with the least exposure?

ClusterIP, the default Service type. It allocates a virtual IP from the service CIDR plus a cluster DNS name that kube-proxy routes only to backing Pods, so traffic never leaves the cluster boundary.

MisconceptionContainer Orchestration

A NodePort Service is a safe choice for an internal-only cache because it just gives a stable target for other Pods.

NodePort is tempting because it also gives a stable target, but it opens a port on every node's external IP, exposing the cache beyond the cluster, which an internal-only requirement forbids.

ConceptCloud Native Application Delivery

What are the two defining pillars of GitOps that distinguish it from other cluster delivery approaches?

A declarative desired state versioned in Git, plus a reconciliation loop running in or against the cluster that continuously drives actual state to match the committed state. This makes Git the single source of truth.

MisconceptionCloud Native Application Delivery

Isn't GitOps just a CI server holding the authoritative config and running kubectl apply whenever a build succeeds?

Tempting because CI pipelines do deploy to clusters, but this describes a push model where an external system imperatively applies changes, rather than a Git repository being the declarative source of truth that the cluster reconciles against.

ConceptCloud Native Architecture

Under immutable infrastructure, how do you change the configuration of a running service?

You never modify a live instance; you build a new versioned artifact with the change and deploy it as a replacement. This eliminates configuration drift and makes rollbacks predictable.

MisconceptionCloud Native Architecture

Can you just open a shell into each running container and edit the config files directly, avoiding a redeploy?

Tempting because it seems faster, but editing files inside a live container mutates the running instance in place, which is the mutable pattern immutable infrastructure exists to avoid.

Study 40 KCNA flashcards free

A free account opens 40 cards from the 906-card KCNA deck, spread across every domain the exam tests. Drop your email and we will keep you posted as new KCNA study material ships. No spam - we mail you only when it is worth your time.

Frequently asked questions

Are these KCNA flashcards free?

Yes. Every card on this page is free to read with no sign-up. The full deck has 906 flashcards; a free account opens 40 of them, spread across every domain, and Pro opens the rest.

What is a misconception card?

A card built from a tempting wrong answer in our question bank, naming the trap and explaining why it fails. Most flashcard decks only drill the fact (a concept card); we pair each one with the misconception the exam actually tests you on.

Are these real KCNA exam questions or vendor content?

No. These are original flashcards written from our own blueprint-aligned practice questions. We never reproduce live exam items or vendor material.

How many flashcards are in the full KCNA deck?

906 cards spread across all 4 domains. For the full domain-by-domain breakdown, read the study guide.

Examworthy is not affiliated with or endorsed by Cloud Native Computing Foundation. All flashcards are original, drawn from our own blueprint-aligned practice questions. We never reproduce live exam items. KCNA and related marks belong to their respective owners.