fix(content): refresh Docker and Kubernetes guidance

This commit is contained in:
yeasy
2026-05-20 09:16:36 -07:00
parent e91fe87822
commit 1b651e5f8c
10 changed files with 33 additions and 20 deletions
+5
View File
@@ -62,6 +62,7 @@ Ingress 资源仍可正常使用,但建议新项目直接采用 Gateway API。
* **PVC (Persistent Volume Claim)**用户申请存储的声明
* **PV (Persistent Volume)**实际的存储资源 (NFSAWS EBSCeph )
* **StorageClass**定义存储类支持动态创建 PV
* **VolumeAttributesClass**Kubernetes 1.34 GA用于在 CSI 驱动支持 `ModifyVolume` 时动态调整卷属性例如性能等级或服务质量参数
### 13.4.4 Horizontal Pod Autoscaling
@@ -114,3 +115,7 @@ metadata:
pod-security.kubernetes.io/enforce: baseline
pod-security.kubernetes.io/warn: restricted
```
### 13.4.7 Sidecar Containers
Kubernetes 1.33 Sidecar Containers 进入 GA它们通过 `initContainers` 中带 `restartPolicy: Always` 的容器表达既保留 init container 的启动顺序又会在主容器生命周期内持续运行对于旧集群或不需要启动顺序控制的场景仍可使用普通多容器 Pod