Hisoka-X commented on code in PR #8291: URL: https://github.com/apache/seatunnel/pull/8291#discussion_r1883695726
########## docs/en/start-v2/kubernetes/helm.md: ########## @@ -0,0 +1,54 @@ +--- +sidebar_position: 4 +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +# Set Up with Helm + +This section provides a quick guide to use SeaTunnel with Helm. + +## Prerequisites + +We assume that you have one local installation as follow: + +- [docker](https://docs.docker.com/) +- [kubernetes](https://kubernetes.io/) +- [helm](https://helm.sh/docs/intro/quickstart/) + +So that the `kubectl` and `helm` commands are available on your local system. + +Take kubernetes [minikube](https://minikube.sigs.k8s.io/docs/start/) as an example, you can start a cluster with the following command: + +```bash +minikube start --kubernetes-version=v1.23.3 +``` + +## Install + +Install with default settings. +```bash +# Choose the corresponding version yourself +export VERSION=2.3.9 +helm pull oci://registry-1.docker.io/apache/seatunnel-helm --version ${VERSION} +tar -xvf seatunnel-helm-${VERSION}.tgz +cd seatunnel-helm +helm install seatunnel . +``` + +If you want to install under another namespace. +First, update `value.yaml` +``` +## change +seatunnel.default.svc.cluster.local +## to +seatunnel.<your namespace >.svc.cluster.local + +helm install seatunnel . -n <your namespace> +``` + +## What's More Review Comment: how to submit job? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
