CKA Curriculum

https://arkalim.notion.site/Kubernetes-c64b2976b0364cc69864490edef33717

https://cloudchamp.notion.site/How-I-Passed-my-CKA-Exam-55fef633b454438aadc54a7261312ec9

Kubernetes commands.pdf

A Cloud Gure Slides

Control Plane

BackUp & Restore etcd

Working with Kubectl

Kubectl Tips

RBAC

Service Account

ConfigMap & Secrets

Requests and Limits

Restart Policies

Multi-Container Pods

Node Affinity

Taints and Toleration

Persistent Volumes

Building a Kubernetes Cluster

Monitoring Container Health with Probes

Init Containers in Kubernetes

Exploring K8s Scheduling

DaemonSet

Static Pod

K8S DEPLOYMENTS OVERVIEW

DNS in K8s

Services

Service DNS Names

Ingress

K8s Storage

Create service using imperative command.

k expose po redis --port=6379 --name=redis-service --type=CusterIP

Create deploy using imperative command.

k create deploy webapp --image=kodekloud/webapp-color --replicas=3