Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update features doc #1121

Merged
merged 2 commits into from
Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ Getting cluster info and generating kubekey's configuration file (optional).

## Documents

* [Features List](docs/features.md)
* [Configuration example](docs/config-example.md)
* [Air-Gapped Installation](docs/manifest_and_artifact.md)
* [Highly Available clusters](docs/ha-mode.md)
* [Addons](docs/addons.md)
* [Network access](docs/network-access.md)
Expand Down
1 change: 1 addition & 0 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

### Air-Gapped Installation

- Customize and use the [air-gapped installation package](manifest_and_artifact.md)
- Create a private image registry
- Customize images available in the private image registry

Expand Down
4 changes: 4 additions & 0 deletions docs/manifest_and_artifact.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ After execution, the `kubekey-artifact.tar.gz` file will be generated in the cur
```
./kk init registry -f config-sample.yaml -a kubekey-artifact.tar.gz
```
* Push the image to the private image registry.
```
./kk artifact image push -f config-sample.yaml -a kubekey-artifact.tar.gz
```
* Create the cluster.
> Note: In an offline environment, you need to configure private image registry information for cluster image management, please refer to [config-sample.yaml](./config-example.md) and [container image registry](./registry.md).

Expand Down
4 changes: 4 additions & 0 deletions docs/zh/manifest_and_artifact.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ kk 通过 `kubeconfig` 文件连接对应的 Kubernetes 集群,然后检查出
```
./kk init registry -f config-sample.yaml -a kubekey-artifact.tar.gz
```
* 推送镜像到私有镜像仓库
```
./kk artifact image push -f config-sample.yaml -a kubekey-artifact.tar.gz
```
* 创建集群。
> 注意:在离线环境中,需配置私有镜像仓库信息用于集群镜像的管理,相关配置可参考 [config-sample.yaml](../config-example.md) 和 [容器镜像仓库](../registry.md)。
```
Expand Down