K8s 學習者絕對不能錯過的最全知識圖譜(內含 56個知識點連接)

導讀:Kubernetes 做爲雲原生時代的「操做系統」,熟悉和使用它是每名用戶的必備技能。本篇文章概述了容器服務 Kubernetes 的知識圖譜,部份內容參考了網上的知識圖譜,旨在幫助用戶更好的瞭解 K8s 的相關知識。html


1.  概述

容器服務 Kubernetes 知識圖譜,部份內容參考網上一知識圖譜,更加結合阿里雲容器服務。nginx

原圖來源:https://www.processon.com/view/link/5ac64532e4b00dc8a02f05eb#mapgit

2. 連接和備註

類別  知識點 知識連接 備註
Docker 原理 KVM--> ECS https://blog.csdn.net/weixin_43695104/article/details/88554443#32_kvm_web_192  
  網絡隧道技術-->VPC https://blog.csdn.net/wangjianno2/article/details/75208036  
  NameSpace https://www.atatech.org/articles/81800 Linux 容器中用來實現「隔離」的技術手段:Namespace,Namespace 技術實際上修改了應用進程看待整個計算機的範圍,它的訪問範圍被操做系統作了限制,只能「看到」某些指定的內容。
  CGroup https://blog.csdn.net/wudongxu/article/details/8474198 Linux Control Group。它最主要的做用,就是限制一個進程組可以使用的資源上限,包括 CPU、內存、磁盤、網絡帶寬等等。
  RootFS(Union FS) https://coolshell.cn/articles/17061.html rootfs 只是一個操做系統所包含的文件、配置和目錄,並不包括操做系統內核。在 Linux 操做系統中,這兩部分是分開存放的,操做系統只有在開機啓動時纔會加載指定版本的內核鏡像。
  windows 2019   windowserver 2019開始支持 namespace
容器服務部署 Docker Desktop https://www.docker.com/products/docker-desktop Mac 機器上強烈建議安裝該軟件做爲學習使用
  kubernetes http://docs.kubernetes.org.cn/ kubernetes 集羣,aliyun容器服務支持
  DashBoard https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/ kubernetes 集羣的圖形界面管理工具,容器服務控制檯整合了該應用並擴展
  EasyPack https://github.com/liumiaocn/easypack  一批部署 kubernetes 等集羣的腳本集合
  minikube https://kubernetes.io/docs/tasks/tools/install-minikube/  mini 新 k8s
工具組件 kubectl http://docs.kubernetes.org.cn/61.html kubectl用於運行Kubernetes集羣命令的管理工具
  kubeadm https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm/ Kubernetes官方提供的用於快速安裝配置Kubernetes集羣的工具
  Helm   相似 rpm,yum,是 k8s 用於安裝組件(軟件包:chart)的工具
  APP Hub https://developer.aliyun.com/hub 在開放雲原生應用中心當中,全部默認的 Helm Charts(Helm 格式的應用),都定時同步自 Helm Hub 北美官方站並託管在 Github 上。在這個過程當中,雲原生應用中心會自動對同步過來的全部 Charts 進行「本地化」操做。
  CFSSL https://github.com/cloudflare/cfssl _CFSSL_是開源的一款PKI/TLS工具,經常使用於 K8s 證書製做
鏡像倉庫 aliyun 私有鏡像倉庫 https://cr.console.aliyun.com/ aliyun 推出的鏡像倉庫,建議採用企業版
  雲效配置鏡像倉庫   雲效企業設置,配置支持從阿里雲私有鏡像倉庫拉取鏡像
   Harbor 鏡像倉庫 https://goharbor.io 開源免費的存儲和分發Docker鏡像的企業級Registry服務器
組件 kube-apiserver(Master) https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/ 在 generic server 上封裝的一層官方默認的 apiserver(static pod)
  etcd(Master) https://etcd.io 類 zk 基於 Raft 協議的實現,啓動進程
  Kube-scheduler(Master) https://kubernetes.io/docs/reference/command-line-tools-reference/kube-scheduler/ 負責 pod 分佈到 Node 上的調度器 (static pod)
  kube-controller-manager(Master) https://kubernetes.io/docs/reference/command-line-tools-reference/kube-controller-manager/  Deployment 等基礎對象的控制器 (static pod)
  cloud-controller-manager(Master) https://kubernetes.io/docs/reference/command-line-tools-reference/cloud-controller-manager/ 用於雲資源使用的控制器,是雲服務進行集成的控制器 (Daemonset)
  kubelet(Node) https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/ 與 Master 通訊,對 worker(Node) 進行生命週期管理
  kube-proxy(Node) https://kubernetes.io/docs/reference/command-line-tools-reference/kube-proxy/ 節點上運行的網絡代理 (Daemonset)
  containner runtime(Node)   CRI 接口
  DNS https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ aliyun容器服務採用 CoreDNS(deployment)
  Ingress controller https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/ aliyun容器服務採用nginx ingress controller, 能夠做爲 https 服務的統一路由(deployment)
  Heapster & influxdb    監控數據採集與存儲用的時序數據庫(Deployment)
  Federation https://kubernetes.io/docs/concepts/cluster-administration/federation/ 集羣聯盟,實現高可用,同步資源等
  kube-flannel   官方網絡插件,aliyun 另外提供了本身開發的 Terway 組件(daemonset)
  logtail https://help.aliyun.com/document_detail/28979.html?spm=a2c4g.11186623.6.595.439d7218wQhzsH aliyun 日誌採集組件(daemonset)
基礎對象 POD http://docs.kubernetes.org.cn/312.html   容器組,運行應用容器基本單位,kubectl get pods 
  Node http://docs.kubernetes.org.cn/304.html 集羣節點服務器,Kubernetes中的工做節點。
  NameSpace http://docs.kubernetes.org.cn/242.html 用以區分和隔離應用
  Deployement http://docs.kubernetes.org.cn/317.html 無狀態部署,最經常使用部署配置
  Daemonset https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ 相似守護進程
  StatefulSet http://docs.kubernetes.org.cn/443.html 有狀態部署
  Job & CronJob https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ 調度任務
  Static POD https://kubernetes.io/docs/tasks/configure-pod-container/static-pod/ 靜態 pod 配置,yaml位於 Master
  HPA https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/ 水平伸縮調度器
  Service https://kubernetes.io/docs/concepts/services-networking/service/ 服務暴露配置,包括 Cluster,NodePort,SLB 等
  Ingress https://www.kubernetes.org.cn/1885.html 路由,阿里雲默認提供 nginx ingress
  Secret https://kubernetes.io/docs/concepts/configuration/secret/ 保密字典,包括 tls,私有倉庫密鑰,Opaque 幾種
  ServiceAccount https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/ 用於資源對象的帳號,好比給一個 Namespace 授予某私有鏡像訪問權限
  RBAC https://kubernetes.io/docs/reference/access-authn-authz/rbac/ k8s 基於角色的訪問控制,role,rolebinding
  Volume https://kubernetes.io/docs/concepts/storage/volumes/ 映射磁盤
  Storge Class https://kubernetes.io/docs/concepts/storage/storage-classes/  
  CustomResourceDefinition   自定義擴展資源
插件擴展 CNI(Falnnel/Terway) https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/network-plugins/ 容器網絡接口
  FlexVolume https://github.com/fstab/cifs 開源Volume實現插件,阿里雲使用中
  Cloud Provider   雲服務供應接口
容器服務優化-最佳實踐 Master 選型及磁盤規格 https://yq.aliyun.com/articles/599169?spm=5176.11065265.1996646101.searchclickresult.7bea1a8bgCTYH7
https://yq.aliyun.com/articles/621108?
 
  網絡選擇 https://yq.aliyun.com/articles/594943?  
   Worker 節點選型 https://yq.aliyun.com/articles/602932?spm=a2c4e  
   Ingress Controller 獨立部署    
   Master 變配 https://help.aliyun.com/document_detail/123661.html?spm=5176.10695662.1996646101.searchclickresult.20d0328c6WG7jc  
  節點變配或重啓、摘除、加入    
  基礎鏡像開發    
  Service 與 SLB 結合    
  集羣審計 https://help.aliyun.com/document_detail/91406.html?spm=5176.10695662.1996646101.searchclickresult.45266c92kGHQrP  
   Deployment實現分批發布    
  StatefulSet 分批發布 https://yq.aliyun.com/articles/622898?spm=a2c4e.11155435.0.0.1b8e3312bSGmSe  
  堡壘機上按照應用設置權限 https://yq.aliyun.com/articles/715809  
  Pod 均勻分佈部署 https://yq.aliyun.com/articles/715808  
  應用優雅下線,優雅退出    
   ApiServer 訪問控制    
  監控    
  雲原生技術公開課 https://edu.aliyun.com/roadmap/cloudnative 阿里雲聯合 CNCF (雲原生計算基金會)共同開發了本套雲原生技術公開課,課程全程免費!
服務治理 Istio https://istio.io 當前最流行的網格服務架構,aliyun支持
  Linkerd https://linkerd.io/2/overview/ 最先提出網格服務公司的產品
   雲效   支持容器服務 K8s 的 CI/CD 阿里雲上產
  Jenkins https://jenkins.io/zh/ 著名的最經常使用的 CI/CD 產品,容器服務由一鍵安裝產品

 

本文做者:平名github

原文連接web

本文爲雲棲社區原創內容,未經容許不得轉載。docker

相關文章
相關標籤/搜索