This is an automated email from the ASF dual-hosted git repository.
lidongdai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-website.git
The following commit(s) were added to refs/heads/main by this push:
new fac1940a829 Fixbug: incorrect download URL in start-k8s (#255)
fac1940a829 is described below
commit fac1940a829b37b137561334919fe4d72726e436
Author: kit101 <[email protected]>
AuthorDate: Tue Aug 22 12:27:05 2023 +0800
Fixbug: incorrect download URL in start-k8s (#255)
* Fix incorrect download URL
* Update kubernetes.mdx
---
.../version-2.3.2/start-v2/kubernetes/kubernetes.mdx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/versioned_docs/version-2.3.2/start-v2/kubernetes/kubernetes.mdx
b/versioned_docs/version-2.3.2/start-v2/kubernetes/kubernetes.mdx
index 4e76196d37f..d4724b69731 100644
--- a/versioned_docs/version-2.3.2/start-v2/kubernetes/kubernetes.mdx
+++ b/versioned_docs/version-2.3.2/start-v2/kubernetes/kubernetes.mdx
@@ -43,15 +43,15 @@ To run the image with SeaTunnel, first create a
`Dockerfile`:
FROM flink:1.13
ENV SEATUNNEL_VERSION="2.3.2"
-ENV SEATUNNEL_HOME = "/opt/seatunnel"
+ENV SEATUNNEL_HOME="/opt/seatunnel"
RUN mkdir -p $SEATUNNEL_HOME
-RUN wget
https://archive.apache.org/dist/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-incubating-${SEATUNNEL_VERSION}-bin.tar.gz
-RUN tar -xzvf apache-seatunnel-incubating-${SEATUNNEL_VERSION}-bin.tar.gz
+RUN wget
https://archive.apache.org/dist/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
+RUN tar -xzvf apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
-RUN cp -r apache-seatunnel-incubating-${SEATUNNEL_VERSION}/* $SEATUNNEL_HOME/
-RUN rm -rf apache-seatunnel-incubating-${SEATUNNEL_VERSION}*
+RUN cp -r apache-seatunnel-${SEATUNNEL_VERSION}/* $SEATUNNEL_HOME/
+RUN rm -rf apache-seatunnel-${SEATUNNEL_VERSION}*
```
Then run the following commands to build the image: