Skip to content

Commit eaac93d

Browse files
authored
Merge pull request #106 from Namanv0509/cka-categories-update
cka tag level categories update
2 parents 699d912 + 33f7bc2 commit eaac93d

File tree

10 files changed

+33
-3
lines changed

10 files changed

+33
-3
lines changed

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ title: "Certified Kubernetes Administrator (CKA) Preparation"
33
description: "This learning path prepares you for the Certified Kubernetes Administrator (CKA) exam, covering essential topics such as cluster architecture, installation, configuration, and troubleshooting."
44
banner: "98e16360-a366-4b78-8e0a-031da07fdacb/images/exoscale-icon.png"
55
weight: 8
6+
tags: [CKA]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/certifications/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "certifications"
33
description: "Get an overview of the existing Kubernetes certifications and what you need to learn for the CKA."
44
title: "Certifications"
55
weight: 1
6+
tags: [CKA , certifications]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
Get an overview of the existing Kubernetes certifications and what you need to learn for the CKA.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/creation/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "creation"
33
description: "Build a 3-node kubeadm cluster from scratch."
44
title: "Create a cluster"
55
weight: 2
6+
tags: [CKA, installation]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section guides you in creating of a 3-nodes Kubernetes cluster using [kubeadm](https://kubernetes.io/docs/reference/setup-tools/kubeadm/) bootstrapping tool. This is an important step as you will use this cluster throughout this workshop.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/networking/_index.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "networking"
33
description: "Understand Pod to Pod communication, Service discovery, Ingress resources."
44
title: "Networking"
55
weight: 5
6+
tags: [CKA,networking]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section is a refresher that provides an overview of the main Kubernetes resources related to networking. At the end of this section, please complete the exercises to put these concepts into practice.
@@ -31,19 +34,19 @@ There are different types of communication within a cluster:
3134
- LoadBalancer Service
3235
- Ingress Controller
3336

34-
### Container to Container Communication
37+
### **Container to Container Communication**
3538

3639
When a Pod is created, it has its own network namespace which is set up by a **pause container**. This container is special as it does not run any workload and is not visible from the kubectl commands. The other containers of this Pod are all attached to the pause container's network namespace and are thus communicating through `localhost`.
3740

3841
![container-to-container](container-to-container.png)
3942

40-
### Pod to Pod on the Same Node
43+
### **Pod to Pod on the Same Node**
4144

4245
Each Pod has its own network namespace and they communicate via a virtual Ethernet (veth) pair connected to a bridge on the host. This setup allows Pod-to-Pod traffic to be switched locally without leaving the Node.
4346

4447
![pod-to-pod-same-node](pod-to-pod-same-node.png)
4548

46-
### Pod to Pod Across Different Nodes
49+
### **Pod to Pod Across Different Nodes**
4750

4851
The network plugin ensures that each Pod's IP is routable across the cluster, using encapsulation, overlays, or native routing. Packets travel across the network infrastructure between Nodes before reaching the destination Pod's virtual interface.
4952

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/operations/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "operations"
33
description: "Perform cluster upgrade and backup/restore of etcd."
44
title: "Operations"
55
weight: 9
6+
tags: [CKA,operations]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section details some Day-2 operations, the main ones being the cluster upgrade and etcd backup/restore. At the end of this section, please complete the exercises in the order provided.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/scheduling/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "scheduling"
33
description: "Learn Pod placement strategies using labels, taints, affinities and more."
44
title: "Scheduling Pods"
55
weight: 4
6+
tags: [CKA,scheduling]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section is a refresher that provides an overview of the main properties involved in the scheduling phase. At the end of this section, please complete the exercises to apply these concepts.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/security/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "security"
33
description: "Create Network Policies and RBAC rules."
44
title: "Security"
55
weight: 7
6+
tags: [CKA,security]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section is a refresher that provides an overview of the main concepts of security in Kubernetes. At the end of this section, please complete the exercises to put these concepts into practice.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/storage/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "storage"
33
description: "Understand StorageClass, PV and PVCs stateful applications."
44
title: "Storage"
55
weight: 6
6+
tags: [CKA,storage]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section is a refresher that provides an overview of the primary Kubernetes resources related to storage. At the end of this section, please complete the exercises to put these concepts into practice.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/troubleshooting/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "troubleshooting"
33
description: "Troubleshoot clusters components, nodes, network and applications."
44
title: "Troubleshooting"
55
weight: 8
6+
tags: [CKA,troubleshooting]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
This section is a refresher that provides an overview of the main concepts used to troubleshoot a Kubernetes cluster. At the end of this section, please complete the exercises to put these concepts into practice.

content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cka-prep/content/workload/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ id: "workload"
33
description: "Create and manage Pods, Deployments, and other workload resources."
44
title: "Workloads"
55
weight: 3
6+
tags: [CKA,workload]
7+
level: [intermediate]
8+
categories: [exoscale,kubernetes]
69
---
710

811
Create and manage Pods, Deployments, and other workload resources.

0 commit comments

Comments
 (0)