SEO优化

This commit is contained in:
huanqing.shao
2019-09-21 14:22:55 +08:00
parent c408ea8903
commit 91dd3e6aae
84 changed files with 430 additions and 177 deletions

View File

@ -1,9 +1,9 @@
---
layout: LearningLayout
description: 本文描述了 Kubernetes Pod 中的初始化容器的概念使用场景和使用方法初始化容器是容器组中 app 容器启动之前执行的容器可能包含 setup 脚本或其他工具进程
description: Kubernete教程_本文描述了Kubernetes_Pod中的初始化容器的概念_使用场景和使用方法_初始化容器是容器组中app容器启动之前执行的容器_可能包含setup脚本或其他工具进程
---
# 容器组 - 初始化容器
# 容器组_初始化容器
参考文档: Kubernetes 官网 [Init Containers](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/)

View File

@ -1,8 +1,8 @@
---
description: 本文描述了 Kuboard 如何处理 Kubernetes 容器组
description: Kubernete教程_本文描述了Kuboard如何处理Kubernetes容器组
---
# 容器组 - Kuboard
# 容器组_Kuboard
## 通过 Kuboard 创建容器组

View File

@ -1,9 +1,9 @@
---
layout: LearningLayout
description: 本文描述了 KubernetesPod 容器组的生命周期
description: Kubernete教程_本文描述了KubernetesPod容器组的生命周期
---
# 容器组 - 生命周期
# 容器组_生命周期
参考文档: Kubernetes 官网文档 [Pod Lifecycle](https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/)

View File

@ -1,12 +1,12 @@
---
description: 在 Kubernetes 中为 Pod 中的容器开启 privileged 模式
description: Kubernete教程_在Kubernetes中为Pod中的容器开启privileged 模式
---
# 容器组 - Privileged 模式
# 容器组_Privileged 模式
## Privilged 模式运行容器
Pod 中的任何容器都可以开启 privileged 模式,只需要
Any container in a Pod can enable privileged mode, using the privileged flag on the security context of the container spec. This is useful for containers that want to use Linux capabilities like manipulating the network stack and accessing devices. Processes within the container get almost the same privileges that are available to processes outside a container. With privileged mode, it should be easier to write network and volume plugins as separate Pods that dont need to be compiled into the kubelet.
<!-- Any container in a Pod can enable privileged mode, using the privileged flag on the security context of the container spec. This is useful for containers that want to use Linux capabilities like manipulating the network stack and accessing devices. Processes within the container get almost the same privileges that are available to processes outside a container. With privileged mode, it should be easier to write network and volume plugins as separate Pods that dont need to be compiled into the kubelet. -->

View File

@ -1,9 +1,9 @@
---
layout: LearningLayout
description: 本文介绍 Kubernetes 中的最小可调度单元 Pod 容器组的概念以及如何使用容器组
description: Kubernete教程_本文介绍Kubernetes中的最小可调度单元Pod容器组的概念以及如何使用容器组
---
# 容器组 - 概述
# 容器组_概述
参考文档Kubernetes 官方文档 [Pod Overview](https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/) [Pods](https://kubernetes.io/docs/concepts/workloads/pods/pod/)

View File

@ -1,9 +1,9 @@
---
layout: LearningLayout
description: 本文介绍了 Kubernetes Controller控制器的概念以及控制器的种类
description: Kubernete教程_本文介绍了Kubernetes_Controller控制器的概念以及控制器的种类
---
# 控制器 - 概述
# 控制器_概述
## 概述