Learn Kubernetes in 1 Hour - K8s新手速通 - 进阶笔记敬请期待

Learn Kubernetes in 1 Hour

Welcome to learn k8s with me!!! [Kubernetes Crash Course for Absolute Beginners NEW] - YouTube

1. Kubernetes Architecture

  • control node - several important processes

  • worker nodes

master nodes are much more important than worker nodes

2. Main Kubernetes Components

2.1 Node & Pod

Node: a virtual or physical machine

IP adjust every time the pod restart,so -> service

2.2 Service &Ingress

Ingress: cause the node-ip is not very practical.

2.3 ConfigMap & Secret

change name: mogo-db-service -> mogo-db

! ConfigMap is for non-confidential data only! ->Secret

2.4 Volume

2.5 Deployment & StatefulSet

my-app died -> replicates everything!

Define blueprint for Pods: specify how many replicas you want to have

work with deployments instead of pods.

! DB can't be replicated via Deployment!

DB has state -> data inconsistence - > StatefulSet

however, deploying StatefulSet not easy -> common practice: DB hosted outside of k8s cluster.

3. Kubernetes Configuration

talk to API server

C-M

each configuration file has 3 parts

4. Minikube & Kubeetcl - Setup k8s cluster locally

相关推荐
z***6263 分钟前
Docker:基于自制openjdk8镜像 or 官方openjdk8镜像,制作tomcat镜像
docker·容器·tomcat
Ccjf酷儿1 小时前
操作系统 蒋炎岩 3.硬件视角的操作系统
笔记
Connie14511 小时前
记一次K8s故障告警排查(Grafna告警排查)
云原生·容器·kubernetes·grafana
习习.y2 小时前
python笔记梳理以及一些题目整理
开发语言·笔记·python
在逃热干面2 小时前
(笔记)自定义 systemd 服务
笔记
❀͜͡傀儡师3 小时前
Docker部署视频下载器
docker·容器·音视频
DKPT3 小时前
ZGC和G1收集器相比哪个更好?
java·jvm·笔记·学习·spring
热爱学习的小怪兽4 小时前
docker的一些常用指令
运维·docker·容器
QT 小鲜肉5 小时前
【孙子兵法之上篇】001. 孙子兵法·计篇
笔记·读书·孙子兵法
w***76555 小时前
用docker启动mysql步骤
mysql·docker·容器