mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
Translate pod-ip-pools-en (#1469)
* Translate pod-ip-pools-en Signed-off-by: adakisme <serenashe@yunify.com> * File modified. Signed-off-by: adakisme <serenashe@yunify.com> * File modified. Signed-off-by: adakisme <serenashe@yunify.com> * File modified. Signed-off-by: adakisme <serenashe@yunify.com>
This commit is contained in:
parent
402a160cd6
commit
7f3ccbb616
|
|
@ -0,0 +1,105 @@
|
|||
---
|
||||
title: "容器组 IP 池"
|
||||
keywords: "Kubernetes, KubeSphere, Pod, IP 池"
|
||||
description: "了解如何启用容器组 IP 池,为您的 Pod 分配一个特定的容器组 IP 池。"
|
||||
linkTitle: "容器组 IP 池"
|
||||
weight: 6920
|
||||
---
|
||||
|
||||
## 什么是容器组 IP 池
|
||||
|
||||
容器组 IP 池用于规划 Pod 网络地址空间,每个容器组 IP 池之间的地址空间不能重叠。创建工作负载时,可选择特定的容器组 IP 池,这样创建出的 Pod 将从该容器组 IP 池中分配 IP。
|
||||
|
||||
## 安装前启用容器组 IP 池
|
||||
|
||||
### 在 Linux 上安装
|
||||
|
||||
在 Linux 上多节点安装 KubeSphere 时,您需要创建一个配置文件,该文件会列出所有 KubeSphere 组件。
|
||||
|
||||
1. [在 Linux 上安装 KubeSphere](../../installing-on-linux/introduction/multioverview/) 时,您需要创建一个默认文件 `config-sample.yaml`。执行以下命令修改该文件:
|
||||
|
||||
```bash
|
||||
vi config-sample.yaml
|
||||
```
|
||||
|
||||
{{< notice note >}}
|
||||
如果您采用 [All-in-one 安装](../../quick-start/all-in-one-on-linux/),则不需要创建 `config-sample.yaml` 文件,因为可以直接创建集群。一般来说,All-in-one 模式针对那些刚接触 KubeSphere 并希望熟悉系统的用户。如果您想在该模式下启用容器组 IP 池(比如用于测试),请参考[下面的部分](#在安装后启用容器组-ip-池),查看如何在安装后启用容器组 IP 池。
|
||||
|
||||
{{</ notice >}}
|
||||
|
||||
2. 在该文件中,搜寻到 `network.ippool.type`,然后将 `none` 更改为 `calico`。完成后保存文件。
|
||||
|
||||
```yaml
|
||||
network:
|
||||
ippool:
|
||||
type: calico # 将“none”更改为“calico”。
|
||||
```
|
||||
|
||||
3. 使用该配置文件创建一个集群:
|
||||
|
||||
```bash
|
||||
./kk create cluster -f config-sample.yaml
|
||||
```
|
||||
|
||||
### 在 Kubernetes 上安装
|
||||
|
||||
[在 Kubernetes 上安装 KubeSphere](../../installing-on-kubernetes/introduction/overview/) 时,您可以在 [cluster-configuration.yaml](https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/cluster-configuration.yaml) 文件中首先启用容器组 IP 池。
|
||||
|
||||
1. 下载 [cluster-configuration.yaml](https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/cluster-configuration.yaml) 文件并进行编辑。
|
||||
|
||||
```bash
|
||||
vi cluster-configuration.yaml
|
||||
```
|
||||
|
||||
2. 在本地 `cluster-configuration.yaml` 文件中,搜寻到 `network.ippool.type`,将 `none` 更改为 `calico` 以启用容器组 IP 池。完成后保存文件。
|
||||
|
||||
```yaml
|
||||
network:
|
||||
ippool:
|
||||
type: calico # 将“none”更改为“calico”。
|
||||
```
|
||||
|
||||
3. 执行以下命令开始安装。
|
||||
|
||||
```bash
|
||||
kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.1.0/kubesphere-installer.yaml
|
||||
kubectl apply -f cluster-configuration.yaml
|
||||
```
|
||||
|
||||
|
||||
## 在安装后启用容器组 IP 池
|
||||
|
||||
1. 使用 `admin` 用户登录控制台。点击左上角的**平台管理**,然后选择**集群管理**。
|
||||
|
||||
2. 点击**自定义资源 CRD**,然后在搜索栏中输入 `clusterconfiguration`。点击搜索结果查看其详情页。
|
||||
|
||||
{{< notice info >}}
|
||||
自定义资源定义 (CRD) 允许用户在不新增 API 服务器的情况下创建一种新的资源类型,用户可以像使用其他 Kubernetes 原生对象一样使用这些自定义资源。
|
||||
{{</ notice >}}
|
||||
|
||||
3. 在**资源列表**中,点击 `ks-installer` 右侧的三个点,然后选择**编辑配置文件**。
|
||||
|
||||
4. 在该配置文件中,搜寻到 `network`,将 `network.ippool.type` 更改为 `calico`。完成后,点击右下角的**更新**保存配置。
|
||||
|
||||
```yaml
|
||||
network:
|
||||
ippool:
|
||||
type: calico # 将“none”更改为“calico”。
|
||||
```
|
||||
|
||||
5. 您可以使用 Web Kubectl 执行以下命令查看安装过程:
|
||||
|
||||
```bash
|
||||
kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f
|
||||
```
|
||||
|
||||
{{< notice tip >}}
|
||||
您可以通过点击控制台右下角的锤子图标来找到 Web kubectl 工具。
|
||||
{{</ notice >}}
|
||||
|
||||
## 验证组件的安装
|
||||
|
||||
在**集群管理**页面,您可以在**网络管理**下看到**容器组 IP 池**。
|
||||
|
||||

|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 212 KiB |
Loading…
Reference in New Issue