K8s_architecture
K8s_architecture
3. Networking in Kubernetes
— Pod networking concepts, CNI.
— Services and their types (ClusterIP, NodePort, LoadBalancer, ExternalName).
— Ingress controllers and Ingress resources.
4. Storage in Kubernetes
— Understand Persistent Volumes (PV), Persistent Volume Claims (PVC),
StorageClasses.
— ConfigMaps, Secrets for configuration and sensitive data.
5. Security in Kubernetes
— RBAC (Role-Based Access Control) — Roles, ClusterRoles, RoleBindings,
ClusterRoleBindings.
— Network Policies.
— Pod Security Policies.
6. Cluster Maintenance
— Cluster upgrade process.
— Backup and restore methodologies for Kubernetes and etcd.
8. Troubleshooting
— Troubleshoot application failure.
— Troubleshoot control plane failure.
— Troubleshoot worker node failure.
— Troubleshoot networking.
•kubectl get [resource]: List resources. For example, kubectl get pods.
•kubectl describe [resource] [name]: Show detailed information about a resource. For
example, kubectl describe pod my-pod.
pod.