Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sangam14 committed Apr 27, 2024
1 parent bbc2369 commit 3b2315f
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 34 deletions.
2 changes: 1 addition & 1 deletion content/docs/kubernetes/Basics-of-pods.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Basics of Pod"
weight: 2
weight: 7
---


Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/ConfigMap.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "ConfigMap "
description: " kubernetes Config "
slug: "ConfigMap"
weight: 790
weight: 12
---


Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/Deployment-Replicaset.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Deployments and replication"
description: " Use Cases for Multi-Container Pods "
slug: "Deployments-and-replication"
weight : 750
weight: 11
---


Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/Service-Type.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Service Type - NodePort,ClusterIP,LoadBalancer "
description: " kubernetes Service "
slug: "Service-Type-NodePort,ClusterIP,LoadBalancer"
weight : 8
weight : 14
---

#### Service Type1: NodePort
Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/Services.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Kubernetes Service "
weight : 7
weight : 13
---

#### kubectl explain svc
Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/labels-selectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Labels and Selectors "
description: " Selectors Labels "
slug: "Labels-and-Selectors"
weight : 760
weight : 8
---

#### Labels - Maps (aka Dictionaries)
Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/multipod-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Multi-Container Pods"
description: " Use Cases for Multi-Container Pods "
slug: "Multi-Container-Pods"
weight : 740
weight : 10
---


Expand Down
2 changes: 1 addition & 1 deletion content/docs/kubernetes/pod-command-args.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Create POD with Command and Arguments "
description: " Kubectl explain pod "
slug: "Create-POD-with-Command-and-Arguments"
weight : 730
weight : 9
---

#### kubectl explain pods.spec.containers.command
Expand Down
22 changes: 19 additions & 3 deletions data/landing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ featureGrid:
url: "/content/docs/docker/docker-compose-images.md"


- title: kubernetes
- title: Kubernetes
icon:
description: kubernetes is an open-source container-orchestration system for automating computer application deployment, scaling, and management.
description: Kubernetes is an open-source container-orchestration system for automating computer application deployment, scaling, and management.
modules:
- title: "pre-requisites to install kubeadm"
url: "/content/docs/kubernetes/pre-requisites-kubeadm.md"
Expand All @@ -170,7 +170,23 @@ featureGrid:
url: "/content/docs/kubernetes/kubeadm-upgrade.md"
- title: "etc backup and restore"
url: "/content/docs/kubernetes/etcd-backup.md"

- title: "Manage role based access control (RBAC)"
url: "/content/docs/kubernetes/RBAC.md"
- title : "Basics of Pod"
url : "/content/docs/kubernetes/Basics-of-pods.md"
- title : "Create POD with Command and Arguments"
url : "/content/docs/kubernetes/pod-command-args.md"
- title: "Multi-Container Pods"
url : "/content/docs/kubernetes/multipod-container.md"
- title: "Labels & Selectors"
url: "/content/docs/kubernetes/labels-selectors.md"
- title: "Kubernetes Service"
url: "/content/docs/kubernetes/Services.md"
- title: "Understand deployments and how to perform rolling update and rollbacks"
url: "content/docs/kubernetes/Deployment-Replicaset.md"
- title: Use ConfigMaps and Secrets to configure applications
url: "content/docs/kubernetes/ConfigMap.md"

- title: Helm
icon: 👷⎈
description: Helm is a tool for managing Kubernetes charts. Charts are packages of pre-configured Kubernetes resources.
Expand Down
2 changes: 1 addition & 1 deletion hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ defaultContentLanguage = 'en'


[[menu.primary]]
name = "meetups"
name = "Meetups"
url = "meetups/"
identifier = "meetups"
weight = 40
45 changes: 23 additions & 22 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,37 +121,38 @@ git clone https://github.com/kubernetesdaily/k8sworkshop.git
| No. | Title |
|--- | --------- |
|1 | Pre-requisit for this lab| [🔗](
|2 | Basics of Pod| [🔗](
|3 | Create POD with Command and Arguments| [🔗](
|4 | Multi-Container Pods| [🔗](
|5 | Deployments & replication|
|6 | Labels & Selectors| [🔗](
|7 | Kubernetes Service| [🔗](

|8 | Service Type: NodePort,ClusterIP,LoadBalancer|
|9 | Ingress Controller| [🔗](
|10| ConfigMap| [🔗](


#### Cluster Architecture, Installation, and Configuration

| No. | Title | Link |
|--- | --------- | --------- |
|1 |Manage role based access control (RBAC)|[🔗](content/docs/kubernetes/RBAC.md)|
|2 | Includes configuring pre-requisites to install kubeadm |[🔗](content/docs/kubernetes/pre-requisites-kubeadm.md)|
|3 |Use Kubeadm to install a basic cluster| |[🔗](content/docs/kubernetes/kubeadm.md)|
|4 |Manage a highly-available Kubernetes cluster||[🔗](content/docs/kubernetes/HA-cluster.md) |
|5 |Perform a version upgrade on a Kubernetes cluster using Kubeadm||[🔗](content/docs/kubernetes/kubeadm-upgrade.md)|
|6 |Implement etcd backup and restore||[🔗](content/docs/kubernetes/etcd-backup.md)|
|1|Includes configuring pre-requisites to install kubeadm |[🔗](content/docs/kubernetes/pre-requisites-kubeadm.md)|
|2 |Use Kubeadm to install a basic cluster|[🔗](content/docs/kubernetes/kubeadm.md)|
|3 |Manage a highly-available Kubernetes cluster|[🔗](content/docs/kubernetes/HA-cluster.md)|
|4 |Perform a version upgrade on a Kubernetes cluster using Kubeadm|[🔗](content/docs/kubernetes/kubeadm-upgrade.md)|
|5 |Implement etcd backup and restore|[🔗](content/docs/kubernetes/etcd-backup.md)|
|6 |Manage role based access control (RBAC)|[🔗](content/docs/kubernetes/RBAC.md)|

#### Workloads and Scheduling

| No. | Title |
|--- | --------- |
|1 |Understand deployments and how to perform rolling update and rollbacks||[🔗](
|2 |Use ConfigMaps and Secrets to configure applications||[🔗](
|3 |Know how to scale applications||[🔗](
|4 |Understand the primitives used to create robust, self-healing, application deployments||[🔗](
|5 |Understand how resource limits can affect Pod scheduling||[🔗](
|6 |Awareness of manifest management and common templating tools||[🔗](
#### Workloads , Scheduling, Application Design and Build

| No. | Title | Link |
|--- | --------- |--------- |
|1 | Basics of Pod| [🔗](./content/docs/kubernetes/Basics-of-pods.md)|
|2 | Create POD with Command and Arguments| [🔗](./content/docs/kubernetes/pod-command-args.md) |
|3 | Multi-Container Pods | [🔗](/content/docs/kubernetes/multipod-container.md)|
|4 | Labels & Selectors| [🔗](./content/docs/kubernetes/labels-selectors.md)|
|5 | Kubernetes Service| [🔗](./content/docs/kubernetes/Services.md)|
|6 |Understand deployments and how to perform rolling update and rollbacks||[🔗](content/docs/kubernetes/Deployment-Replicaset.md)|
|7 |Use ConfigMaps and Secrets to configure applications||[🔗](content/docs/kubernetes/ConfigMap.md) |
|8 |Know how to scale applications||[🔗]( |
|9 |Understand the primitives used to create robust, self-healing, application deployments||[🔗]( |
|10 |Understand how resource limits can affect Pod scheduling||[🔗]( |
|11 |Awareness of manifest management and common templating tools||[🔗]( |

#### Services and Networking

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3b2315f

Please sign in to comment.