Files
docker_practice/12_orchestration/kubernetes/README.md
2026-02-12 16:51:50 -08:00

16 lines
659 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Kubernetes
`Kubernetes` Google 发起的开源容器编排系统它支持多种云平台与私有数据中心
`Kubernetes` 负责对容器工作负载进行调度与编排其目的是让用户通过集群声明式地管理应用而无需手动干预每个容器的生命周期细节
Kubernetes 的最小调度单位是 `Pod`一个 `Pod` 由一组紧密协作的容器构成它们共享网络命名空间IP 以及部分存储资源也可以根据需要对 Pod 进行端口映射
本章将分为 5 节介绍 `Kubernetes`包括
* 项目简介
* 快速入门
* 基本概念
* 实践例子
* 架构分析等高级话题