英语学习

☸️ 云原生术语

·4 分钟阅读·1406 字

Kubernetes、Docker、CI/CD 等云原生领域的专业英语词汇

📋 目录

☸️ 云原生术语

云原生运维方向的英文专业词汇,结合语境理解和记忆。


Kubernetes 核心词汇

英文中文例句
control plane控制平面The control plane manages the cluster state.
node节点Each node runs a kubelet agent.
pod容器组A pod is the smallest deployable unit.
deployment部署Use a Deployment to manage replica sets.
service服务A Service exposes a set of pods.
ingress入口Ingress provides HTTP routing.
namespace命名空间Namespaces provide logical isolation.
rolling update滚动更新Rolling update ensures zero downtime.
readiness probe就绪探针Readiness probe checks if the pod is ready.
liveness probe存活探针Liveness probe checks if the pod is healthy.

常用动词

英文中文例句
schedule调度The scheduler assigns pods to nodes.
scale伸缩Auto-scaling adjusts replicas based on load.
rollback回滚Use kubectl rollout undo to rollback.
admit准入The admission controller intercepts requests.
taint污点Taints prevent pods from scheduling.

常见缩写

缩写全称中文
CRIContainer Runtime Interface容器运行时接口
CNIContainer Network Interface容器网络接口
CSIContainer Storage Interface容器存储接口
RBACRole-Based Access Control基于角色的访问控制
HPAHorizontal Pod Autoscaler水平 Pod 自动伸缩
PV/PVCPersistentVolume / PersistentVolumeClaim持久化存储

学习方法 阅读官方英文文档时,遇到生词先结合上下文猜测,再查词典确认,最后记录到本笔记中形成积累。

关联文档

  • ../../cloud-native/kubernetes/core/K8s 核心概念 — 对应技术概念
  • ../english
  • ../../cloud-native/container/容器技术 — 容器相关术语 — 返回导航