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

docs: install #628

Merged
merged 2 commits into from
Sep 8, 2021
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: 1 addition & 1 deletion .github/workflows/compatibility-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
matrix:
module: ["manager", "scheduler", "cdn", "dfdaemon"]
needs: skip_check
if: needs.skip_check.outputs.noop != 'true'
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
e2e_tests:
runs-on: ubuntu-latest
needs: skip_check
if: needs.skip_check.outputs.noop != 'true'
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}

steps:
- name: Checkout code
Expand Down
20 changes: 16 additions & 4 deletions docs/en/user-guide/install/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
[install-client](./install-dfdaemon.md) is the installation instructions of dfdaemon
# Installation

[install-manager](./install-manager.md) is the installation instructions of manager
There are two installation methods, it is recommended to use helm charts to install as a whole, or install separately according to modules

[install-scheduler](./install-scheduler.md) is the installation instructions of scheduler
## Install with Helm Charts

[install-cdn](./install-cdn.md) is the installation instructions of CDN
> ArtifactHub Link: https://artifacthub.io/packages/helm/dragonfly/dragonfly

It is recommended to use helm charts for installation, which is a simple and quick installation. [Kubernetes-with-Dragonfly](../../ecosystem/Kubernetes-with-Dragonfly.md) is the installation instructions of dragonfly.

## Install separately

* [install-client](./install-dfdaemon.md) is the installation instructions of dfdaemon

* [install-manager](./install-manager.md) is the installation instructions of manager

* [install-scheduler](./install-scheduler.md) is the installation instructions of scheduler

* [install-cdn](./install-cdn.md) is the installation instructions of CDN

20 changes: 16 additions & 4 deletions docs/zh-CN/user-guide/install/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
[install-client](./install-dfdaemon.md) 是 dfdaemon 的安装指南
# 安装

[install-manager](./install-manager.md) 是 manager 的安装指南
有两种安装模式,推荐使用 Helm Charts 一次性整体安装,也可以各模块单独安装。

[install-scheduler](./install-scheduler.md) 是 scheduler 的安装指南
## 使用 Helm Charts 进行按轧辊

[install-cdn](./install-cdn.md) 是 CDN 的安装指南
> ArtifactHub 仓库链接为: https://artifacthub.io/packages/helm/dragonfly/dragonfly

推荐使用 Helm Charts 进行安装,简单且快捷。参考文档 [Kubernetes-with-Dragonfly](../../ecosystem/Kubernetes-with-Dragonfly.md)。

## 按模块单独安装

* [install-dfdaemon](./install-dfdaemon.md) 是 dfdaemon 的安装指南

* [install-manager](./install-manager.md) 是 manager 的安装指南

* [install-scheduler](./install-scheduler.md) 是 scheduler 的安装指南

* [install-cdn](./install-cdn.md) 是 CDN 的安装指南