From f3f7a67271db60b9e5df1493154974137d92b784 Mon Sep 17 00:00:00 2001 From: Mia Steinkirch Date: Sun, 27 Oct 2019 14:47:37 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8D=95=20Add=20a=20quick=20definition=20o?= =?UTF-8?q?f=20k8s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1523c19..dc988bd 100755 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ -# Learning Kubernetes +# Curated Resources on Kubernetes ``` -* A Kubernetes cluster consists of **Nodes** (simialr to servers) +A Kubernetes cluster consists of **Nodes** (similar to servers). -* Nodes run **Pods**, which are collections of Docker containers. Containers in a Pod share the same network. +Nodes run Pods, which are collections of Docker containers. -* The Kubernetes object responsible for launching and maintaining the desired number of pods is called a **Deployment**. +Containers in a Pod share the same network. -* Kubernetes provides objects called a **Service** so thart Pods to communicate with other Pods. They are tied to Deployments through Selectors and Labels, and they can be exposed to external clients either by exposing a **NodePort** as a static port on each Kubernetes node or by creating a **LoadBalancer** object/ +Deployment is a Kubernetes object responsible for launching and maintaining pods. -* Kubernetes provides the **Secret** object for managing sensitive information such as passwords, API keys, and other credentials. +Services objects allow pods to communicate with other pods. ``` ## Examples in this repository