Kubernetes and Cloud Native Associate (KCNA) Exam Guide

borhanitrash

Md. Abdur Rahman

Posted on November 30, 2024

Kubernetes and Cloud Native Associate (KCNA) Exam Guide

The KCNA is a certification aimed for individuals who want to advance to the professional level by demonstrating an understanding of the core knowledge and abilities of Kubernetes. This certification is ideal for students learning about or candidates interested in working with cloud native technologies.

Image description

Exam Brief

  • Duration : 1.5 hours

  • Passing score: 75%

  • Certification validity: 3 years

  • Prerequisite: None

  • Cost: $250 USD, 1 year exam eligibility, with a free retake within the year.

  • Result: Emailed 24 hours after exam completion

  • Official KCNA curriculum

  • The exam consists of around 60 MCQ questions.

KCNA topics overview

1. Kubernetes Fundamentals - 46%

1.1 Fundamental Kuberenetes resources

Useful Kubernetes commands using kubectl

kubectl get pods (obtain/list pods in current namespace)

kubectl get pods -A OR kubectl get pods --all-namespaces (obtain pods in all namespaces)

kubectl api-resources (obtain API resources that are retrievable using the kubect commands)

kubectl run nginx --image=nginx (run a pod named nginx using the nginx image)

kubectl create deploy kcna --image=nginx (create a deployment named "kcna" with the nginx image)

kubectl create deploy kcna --image=nginx --replicas=5 (create a deployment named "kcna" with the nginx image that deploys 5 pods (replicas))

Enter fullscreen mode Exit fullscreen mode

1.2 Kubernetes Architecture

1.4 Containers

1.5 Scheduling

2. Container Orchestration - 22%

2.1 Containers Orchestration Fundamentals

2.2 Runtime

2.3 Security

2.4 Networking

2.5 Service Mesh

2.6 Storage

3. Cloud Native Architecture - 16%

3.1 Autoscaling

3.2 Serverless

3.3 Community & Governance

3.4 Roles & Personas

3.5 Open Standards

4. Cloud Native Observability - 8%

4.1 Telemetry & Observability

4.2 Prometheus

4.3 Cost Management

5. Cloud Native Application Delivery - 8%

5.1 Application Delivery Fundamentals

5.2 GitOps

5.3 CI/CD

Useful training material:

Useful reading material

Books

References

Useful Youtube vdeos

Useful Kubernetes repos + Next steps?

💖 💪 🙅 🚩
borhanitrash
Md. Abdur Rahman

Posted on November 30, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related