From c6c960912ddc10401798a1d828f935176d716928 Mon Sep 17 00:00:00 2001 From: Jack McDonnell <52510979+McJacko@users.noreply.github.com> Date: Tue, 13 Jul 2021 17:18:25 -0700 Subject: [PATCH 1/4] Kubernetes Pod explanation (Jack McDonnell) (#137) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4dace9f..5da6dbe 100644 --- a/README.md +++ b/README.md @@ -5314,6 +5314,8 @@ False. A Kubernetes cluster consists of at least 1 master and can have 0 workers
Explain what is a pod
+ +A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers. Pods are the smallest deployable units of computing that you can create and manage in Kubernetes.
From 1991f8bdd1927f4de2d1f240f6528a87a622f69a Mon Sep 17 00:00:00 2001 From: "Oleg A. Arkhangelsky" Date: Thu, 15 Jul 2021 00:49:12 +0300 Subject: [PATCH 2/4] Correct SMTP port number (#138) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5da6dbe..d0564fb 100644 --- a/README.md +++ b/README.md @@ -3624,7 +3624,7 @@ Technically, yes.
* SSH - 22 - * SMTP - 35 + * SMTP - 25 * HTTP - 80 * DNS - 53 * HTTPS - 443 From b30bb7d41b8176e62b21d5e99c7866d74248a2bb Mon Sep 17 00:00:00 2001 From: Jack McDonnell <52510979+McJacko@users.noreply.github.com> Date: Wed, 14 Jul 2021 16:24:53 -0700 Subject: [PATCH 3/4] Kubernetes Deployment explanation (#139) * Kubernetes Pod explanation (Jack McDonnell) * Kubernetes Deployment explanation --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index d0564fb..f638b04 100644 --- a/README.md +++ b/README.md @@ -5352,6 +5352,11 @@ It means they would eventually die and pods are unable to heal so it is recommen
What is a "Deployment" in Kubernetes?
+ +A Kubernetes Deployment is used to tell Kubernetes how to create or modify instances of the pods that hold a containerized application. +Deployments can scale the number of replica pods, enable rollout of updated code in a controlled manner, or roll back to an earlier deployment version if necessary. + +A Deployment is a declarative statement for the desired state for Pods and Replica Sets.
From 13cecf6f13ce1a5ced38f62c482cd6dbb3481f39 Mon Sep 17 00:00:00 2001 From: Jack McDonnell <52510979+McJacko@users.noreply.github.com> Date: Sat, 17 Jul 2021 09:55:29 -0700 Subject: [PATCH 4/4] Kubectl explanation (#140) * Kubernetes Pod explanation (Jack McDonnell) * Kubernetes Deployment explanation * Kubectl explanation --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f638b04..4ab5b4b 100644 --- a/README.md +++ b/README.md @@ -5281,6 +5281,7 @@ The workers are the nodes which run the applications and workloads. What is kubectl?
+Kubectl is the Kubernetes command line tool that allows you to run commands against Kubernetes clusters. For example, you can use kubectl to deploy applications, inspect and manage cluster resources, and view logs.
Which command you run to view your nodes?