Commit ba3e4a8 1 parent bf6b493 commit ba3e4a8 Copy full SHA for ba3e4a8
File tree 2 files changed +55
-2
lines changed
2 files changed +55
-2
lines changed Original file line number Diff line number Diff line change @@ -50,5 +50,5 @@ helm install seatunnel . -n <your namespace>
50
50
51
51
## What's More
52
52
53
- For now, you have taken a quick look at SeaTunnel, and you can see [ connector] ( /category /connector) to find all sources and sinks SeaTunnel supported.
54
- Or see [ deployment] ( ../deployment.mdx ) if you want to submit your application in another kind of your engine cluster.
53
+ For now, you have taken a quick look at SeaTunnel, and you can see [ connector] ( ../.. /connector-v2 ) to find all sources and sinks SeaTunnel supported.
54
+ Or see [ deployment] ( ../../seatunnel-engine/ deployment.md ) if you want to submit your application in another kind of your engine cluster.
Original file line number Diff line number Diff line change
1
+ ---
2
+ sidebar_position : 4
3
+ ---
4
+
5
+ import Tabs from '@theme/Tabs ';
6
+ import TabItem from '@theme/TabItem ';
7
+
8
+ # 使用Helm部署
9
+
10
+ 使用Helm快速部署Seatunnel集群。
11
+
12
+ ## 准备
13
+
14
+ 我们假设您的本地已经安装如下软件:
15
+
16
+ - [ docker] ( https://docs.docker.com/ )
17
+ - [ kubernetes] ( https://kubernetes.io/ )
18
+ - [ helm] ( https://helm.sh/docs/intro/quickstart/ )
19
+
20
+ 在您的本地环境中能够正常执行` kubectl ` 和` helm ` 命令。
21
+
22
+ 以 [ minikube] ( https://minikube.sigs.k8s.io/docs/start/ ) 为例, 您可以使用如下命令启动一个集群:
23
+
24
+ ``` bash
25
+ minikube start --kubernetes-version=v1.23.3
26
+ ```
27
+
28
+ ## 安装
29
+
30
+ 使用默认配置安装
31
+ ``` bash
32
+ # Choose the corresponding version yourself
33
+ export VERSION=2.3.9
34
+ helm pull oci://registry-1.docker.io/apache/seatunnel-helm --version ${VERSION}
35
+ tar -xvf seatunnel-helm-${VERSION} .tgz
36
+ cd seatunnel-helm
37
+ helm install seatunnel .
38
+ ```
39
+
40
+ 如果您需要使用其他命名空间进行安装。
41
+ 首先,需要更新 ` value.yaml `
42
+ ```
43
+ ## 修改
44
+ seatunnel.default.svc.cluster.local
45
+ ## 为
46
+ seatunnel.<your namespace >.svc.cluster.local
47
+
48
+ helm install seatunnel . -n <your namespace>
49
+ ```
50
+
51
+ ## 下一步
52
+ 到现在为止,您已经安装好Seatunnel集群了,你可以查看Seatunnel有哪些[ 连接器] ( ../../connector-v2 ) .
53
+ 或者选择其他方式 [ 部署] ( ../../seatunnel-engine/deployment.md ) .
You can’t perform that action at this time.
0 commit comments