Edge Kubernetes & Zero-Touch Provisioning›Foundations · Cheat sheet & self-check

Foundations · wrap-up

Cheat sheet & self-check

9 questions across 3 lessons. Each answer links back to the lesson it came from.

Pick an answer to see if you got it, and why.

  1. Q1. What's the main economic argument for ZTP at the edge?

    Show answer

    B. The site needs only someone who can rack and cable; everything else is remote, repeatable and auditable.

    From lesson 01 · Why ZTP for edge
  2. Q2. Which statement best describes 'zero-touch'?

    Show answer

    B. Hands still install hardware; zero-touch covers everything after that.

    From lesson 01 · Why ZTP for edge
  3. Q3. Why must a site be described declaratively (in Git)?

    Show answer

    B. The site definition is the source of truth for day 1 and every day-2 rebuild.

    From lesson 01 · Why ZTP for edge
  4. Q4. Why can't a central data-centre provisioner simply PXE-boot servers at every remote site?

    Show answer

    B. Boot protocols are local by nature. Designs either extend them carefully (relay) or place a small provisioner at the site, or use BMC virtual media.

    From lesson 02 · Architecture for edge ZTP
  5. Q5. Why should sites connect outbound to the centre rather than accept inbound connections?

    Show answer

    B. Pull-based GitOps and agents that dial home fit this model.

    From lesson 02 · Architecture for edge ZTP
  6. Q6. What limits the blast radius if one edge site is physically compromised?

    Show answer

    B. Assume some site will be compromised; design so that it can't be used to reach the fleet.

    From lesson 02 · Architecture for edge ZTP
  7. Q7. Why is a two-node cluster a poor HA choice?

    Show answer

    B. Use 1 node (simple), 3 nodes (tolerates 1 failure), or a 2-node design with an external witness/arbiter where the platform supports it.

    From lesson 03 · Cluster sizing for edge
  8. Q8. In a 3-node compact cluster, what must you plan for during a rolling upgrade?

    Show answer

    B. Upgrades temporarily reduce capacity like a failure does. Size for N-1 or use in-place upgrades where supported.

    From lesson 03 · Cluster sizing for edge
  9. Q9. Why set systemReserved and kubeReserved on small edge nodes?

    Show answer

    B. On small machines, a starved kubelet or runtime turns a busy node into a NotReady node.

    From lesson 03 · Cluster sizing for edge