Skip to content

Commit 7252e22

Browse files
authored
[3.1.9] add 3.1.9 release doc (#15333)
1 parent 443b3dc commit 7252e22

File tree

21 files changed

+345
-275
lines changed

21 files changed

+345
-275
lines changed

deploy/docker/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717
#
1818
HUB=apache
19-
TAG=3.1.8
19+
TAG=3.1.9
2020

2121
TZ=Asia/Shanghai
2222
DATABASE=postgresql

deploy/kubernetes/dolphinscheduler/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ type: application
3535

3636
# This is the chart version. This version number should be incremented each time you make changes
3737
# to the chart and its templates, including the app version.
38-
version: 3.1.8
38+
version: 3.1.9
3939

4040
# This is the version number of the application being deployed. This version number should be
4141
# incremented each time you make changes to the application.
42-
appVersion: 3.1.8
42+
appVersion: 3.1.9
4343

4444
dependencies:
4545
- name: postgresql

deploy/kubernetes/dolphinscheduler/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ timezone: "Asia/Shanghai"
2323

2424
image:
2525
registry: "dolphinscheduler.docker.scarf.sh/apache"
26-
tag: "3.1.8"
26+
tag: "3.1.9"
2727
pullPolicy: "IfNotPresent"
2828
pullSecret: ""
2929
master: dolphinscheduler-master

docs/configs/docsdev.js

Lines changed: 244 additions & 244 deletions
Large diffs are not rendered by default.

docs/configs/site.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default {
4545
children: [
4646
{
4747
key: 'docs0',
48-
text: 'latest(3.1.8)',
48+
text: 'latest(3.1.9)',
4949
link: '/en-us/docs/latest/user_doc/about/introduction.html',
5050
},
5151
{
@@ -173,7 +173,7 @@ export default {
173173
children: [
174174
{
175175
key: 'docs0',
176-
text: '最新版本latest(3.1.8)',
176+
text: '最新版本latest(3.1.9)',
177177
link: '/zh-cn/docs/latest/user_doc/about/introduction.html',
178178
},
179179
{

docs/docs/en/guide/expansion-reduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Attention: DolphinScheduler itself does not depend on Hadoop, Hive, Spark, but w
3030
mkdir -p /opt
3131
cd /opt
3232
# decompress
33-
tar -zxvf apache-dolphinscheduler-3.1.8-bin.tar.gz -C /opt
33+
tar -zxvf apache-dolphinscheduler-3.1.9-bin.tar.gz -C /opt
3434
cd /opt
35-
mv apache-dolphinscheduler-3.1.8-bin dolphinscheduler
35+
mv apache-dolphinscheduler-3.1.9-bin dolphinscheduler
3636
```
3737

3838
```markdown

docs/docs/en/guide/start/docker.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Start DolphinScheduler with standalone-server Docker images is the easiest way t
1919
you can learn DolphinScheduler's concepts and usage, with minimal cost.
2020

2121
```shell
22-
$ DOLPHINSCHEDULER_VERSION=3.1.8
22+
$ DOLPHINSCHEDULER_VERSION=3.1.9
2323
$ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:25333 -d apache/dolphinscheduler-standalone-server:"${DOLPHINSCHEDULER_VERSION}"
2424
```
2525

@@ -41,7 +41,7 @@ After complete the installation, get the `docker-compose.yaml` file from [downlo
4141
form its source package, and make sure you get the right version. After download the package, you can run the commands as below.
4242

4343
```shell
44-
$ DOLPHINSCHEDULER_VERSION=3.1.8
44+
$ DOLPHINSCHEDULER_VERSION=3.1.9
4545
$ tar -zxf apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src.tar.gz
4646
# Going to docker-compose's location
4747
# For Mac or Linux users
@@ -68,7 +68,7 @@ $ docker-compose --profile all up -d
6868
container when it up. You could start DolphinScheduler server separately if you want to reuse your exists services.
6969

7070
```shell
71-
$ DOLPHINSCHEDULER_VERSION=3.1.8
71+
$ DOLPHINSCHEDULER_VERSION=3.1.9
7272
# Initialize the database, make sure database <DATABASE> already exists
7373
$ docker run -d --name dolphinscheduler-tools \
7474
-e DATABASE="postgresql" \
@@ -129,5 +129,5 @@ and use `admin` and `dolphinscheduler123` as default username and password in th
129129

130130
You can modify some environment variables to change configurations when you are starting servers through Docker. We have
131131
an example in [using exists PostgreSQL ZooKeeper](#using-exists-postgresql-zookeeper) to change database and ZooKeeper configurations,
132-
and you could find all environment variables in [all environment variables](https://github.com/apache/dolphinscheduler/blob/3.1.8/script/env/dolphinscheduler_env.sh) <!-- markdown-link-check-disable-line -->
132+
and you could find all environment variables in [all environment variables](https://github.com/apache/dolphinscheduler/blob/3.1.9/script/env/dolphinscheduler_env.sh) <!-- markdown-link-check-disable-line -->
133133
and change them if you want.

docs/docs/en/history-versions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
#### Setup instructions, are available for each stable version of Apache DolphinScheduler below:
66

7+
### Versions: 3.1.9
8+
9+
#### Links: [3.1.9 Document](../3.1.9/user_doc/about/introduction.md)
10+
711
### Versions: 3.1.8
812

913
#### Links: [3.1.8 Document](../3.1.8/user_doc/about/introduction.md)

docs/docs/zh/guide/expansion-reduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
mkdir -p /opt
3131
cd /opt
3232
# 解压缩
33-
tar -zxvf apache-dolphinscheduler-3.1.8-bin.tar.gz -C /opt
33+
tar -zxvf apache-dolphinscheduler-3.1.9-bin.tar.gz -C /opt
3434
cd /opt
35-
mv apache-dolphinscheduler-3.1.8-bin dolphinscheduler
35+
mv apache-dolphinscheduler-3.1.9-bin dolphinscheduler
3636
```
3737

3838
```markdown

docs/docs/zh/guide/start/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
你可以最快速的体验到 DolphinScheduler 的大部分功能,了解主要和概念和内容。
1919

2020
```shell
21-
$ DOLPHINSCHEDULER_VERSION=3.1.8
21+
$ DOLPHINSCHEDULER_VERSION=3.1.9
2222
$ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:25333 -d apache/dolphinscheduler-standalone-server:"${DOLPHINSCHEDULER_VERSION}"
2323
```
2424

@@ -37,7 +37,7 @@ $ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:2
3737
下载对应版本源码包可能是最快的方法,当下载完源码后就可以运行命令进行部署了。
3838

3939
```shell
40-
$ DOLPHINSCHEDULER_VERSION=3.1.8
40+
$ DOLPHINSCHEDULER_VERSION=3.1.9
4141
$ tar -zxf apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src.tar.gz
4242
# Mac Linux 用户
4343
$ cd apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src/deploy/docker
@@ -61,7 +61,7 @@ $ docker-compose --profile all up -d
6161
ZooKeeper 且不想启动新的服务,可以使用这个方式分别启动 DolphinScheduler 容器。
6262

6363
```shell
64-
$ DOLPHINSCHEDULER_VERSION=3.1.8
64+
$ DOLPHINSCHEDULER_VERSION=3.1.9
6565
# 初始化数据库,其确保数据库 <DATABASE> 已经存在
6666
$ docker run -d --name dolphinscheduler-tools \
6767
-e DATABASE="postgresql" \

0 commit comments

Comments
 (0)