Helm
sudo snap install helm --classic
Kubelet
pod 管理
pod 中所有的容器最大的特性也是最大的好處就是共享了很多資源(比如網路空間)
pod 下所有容器共享
Network
、 Port
、Volume
,也就是它們之間可以通過 localhost 訪問和通訊,省去了很多容器通訊的麻煩。kubectl
指令 for communicate with K8s
- 取得 k8s 各種不同資源資訊 (get: pod, service, ingress, ...)
- 取得 k8s 各種不同資源的詳細內容 (describe: pod, service, ingress, ...)
- 配置 k8s 運行資源 (create, apply, rollout, ...)
- 刪除 k8s 運行資源 (delete)
- 取得 log 檔案 (logs)