mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-19 04:09:24 -04:00
🍕 Add a quick definition of k8s
This commit is contained in:
parent
f7a0e3b5d1
commit
f3f7a67271
1 changed files with 6 additions and 6 deletions
12
README.md
12
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
|
## Examples in this repository
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue