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] 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.