Skip to content

Commit ef003c6

Browse files
lihongyi87zhongjiajie
authored andcommitted
Pre release change
1 parent 6d7dbe6 commit ef003c6

File tree

24 files changed

+346
-434
lines changed

24 files changed

+346
-434
lines changed

deploy/docker/.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717
#
18-
HUB=ghcr.io/apache/dolphinscheduler
19-
TAG=latest
18+
HUB=apache
19+
TAG=3.2.0
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.0
38+
version: 3.2.0
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.0
42+
appVersion: 3.2.0
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
@@ -28,7 +28,7 @@ initImage:
2828

2929
image:
3030
registry: "dolphinscheduler.docker.scarf.sh/apache"
31-
tag: "dev-SNAPSHOT"
31+
tag: "3.2.0"
3232
pullPolicy: "IfNotPresent"
3333
pullSecret: ""
3434
master: dolphinscheduler-master

docs/configs/docsdev.js

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

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-<version>-bin.tar.gz -C /opt
33+
tar -zxvf apache-dolphinscheduler-3.2.0-bin.tar.gz -C /opt
3434
cd /opt
35-
mv apache-dolphinscheduler-<version>-bin dolphinscheduler
35+
mv apache-dolphinscheduler-3.2.0-bin dolphinscheduler
3636
```
3737

3838
```markdown

docs/docs/en/guide/installation/kubernetes.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ If you are a new hand and want to experience DolphinScheduler functions, we reco
1212

1313
## Install DolphinScheduler
1414

15-
Please download the source code package `apache-dolphinscheduler-<version>-src.tar.gz`, download address: [download address](https://dolphinscheduler.apache.org/en-us/download)
15+
Please download the source code package `apache-dolphinscheduler-3.2.0-src.tar.gz`, download address: [download address](https://dolphinscheduler.apache.org/en-us/download)
1616

1717
To publish the release name `dolphinscheduler` version, please execute the following commands:
1818

1919
```
20-
$ tar -zxvf apache-dolphinscheduler-<version>-src.tar.gz
21-
$ cd apache-dolphinscheduler-<version>-src/deploy/kubernetes/dolphinscheduler
20+
$ tar -zxvf apache-dolphinscheduler-3.2.0-src.tar.gz
21+
$ cd apache-dolphinscheduler-3.2.0-src/deploy/kubernetes/dolphinscheduler
2222
$ helm repo add bitnami https://charts.bitnami.com/bitnami
2323
$ helm dependency update .
24-
$ helm install dolphinscheduler . --set image.tag=<version>
24+
$ helm install dolphinscheduler . --set image.tag=3.2.0
2525
```
2626

2727
To publish the release name `dolphinscheduler` version to `test` namespace:
@@ -232,9 +232,9 @@ kubectl scale --replicas=6 sts dolphinscheduler-worker -n test # with test names
232232
2. Create a new `Dockerfile` to add MySQL driver:
233233

234234
```
235-
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-<service>:<version>
235+
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-<service>:3.2.0
236236
# For example
237-
# FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-tools:<version>
237+
# FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-tools:3.2.0
238238
239239
# Attention Please, If the build is dolphinscheduler-tools image
240240
# You need to change the following line to: COPY mysql-connector-java-8.0.16.jar /opt/dolphinscheduler/tools/libs
@@ -283,9 +283,9 @@ externalDatabase:
283283
2. Create a new `Dockerfile` to add MySQL or Oracle driver:
284284

285285
```
286-
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-<service>:<version>
286+
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-<service>:3.2.0
287287
# For example
288-
# FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-worker:<version>
288+
# FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-worker:3.2.0
289289
290290
# If you want to support MySQL Datasource
291291
COPY mysql-connector-java-8.0.16.jar /opt/dolphinscheduler/libs
@@ -315,7 +315,7 @@ docker build -t apache/dolphinscheduler-<service>:new-driver .
315315
1. Create a new `Dockerfile` to install pip:
316316

317317
```
318-
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-worker:<version>
318+
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-worker:3.2.0
319319
COPY requirements.txt /tmp
320320
RUN apt-get update && \
321321
apt-get install -y --no-install-recommends python-pip && \
@@ -350,7 +350,7 @@ docker build -t apache/dolphinscheduler-worker:pip .
350350
1. Create a new `Dockerfile` to install Python 3:
351351
352352
```
353-
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-worker:<version>
353+
FROM dolphinscheduler.docker.scarf.sh/apache/dolphinscheduler-worker:3.2.0
354354
RUN apt-get update && \
355355
apt-get install -y --no-install-recommends python3 && \
356356
rm -rf /var/lib/apt/lists/*

docs/docs/en/guide/installation/standalone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you want to deploy DolphinScheduler in production, we recommend you follow [c
1212
## Preparation
1313

1414
- JDK:download [JDK][jdk] (1.8+), install and configure environment variable `JAVA_HOME` and append `bin` dir (included in `JAVA_HOME`) to `PATH` variable. You can skip this step if it already exists in your environment.
15-
- Binary package: download the DolphinScheduler binary package at [download page](https://dolphinscheduler.apache.org/en-us/download/<version>). <!-- markdown-link-check-disable-line -->
15+
- Binary package: download the DolphinScheduler binary package at [download page](https://dolphinscheduler.apache.org/en-us/download/3.2.0). <!-- markdown-link-check-disable-line -->
1616

1717
## Start DolphinScheduler Standalone Server
1818

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

Lines changed: 5 additions & 5 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=<version>
22+
$ DOLPHINSCHEDULER_VERSION=3.2.0
2323
$ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:25333 -d apache/dolphinscheduler-standalone-server:"${DOLPHINSCHEDULER_VERSION}"
2424
```
2525

@@ -37,11 +37,11 @@ be stored on disks after you change docker-compose configuration, and it is robu
3737
DolphinScheduler in a long term. You have to install [docker-compose](https://docs.docker.com/compose/install/) before you
3838
start servers.
3939

40-
After complete the installation, get the `docker-compose.yaml` file from [download page](https://dolphinscheduler.apache.org/en-us/download/<version>)
40+
After complete the installation, get the `docker-compose.yaml` file from [download page](https://dolphinscheduler.apache.org/en-us/download/3.2.0)
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=<version>
44+
$ DOLPHINSCHEDULER_VERSION=3.2.0
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=<version>
71+
$ DOLPHINSCHEDULER_VERSION=3.2.0
7272
# Initialize the database, make sure database <DATABASE> already exists
7373
$ docker run -d --name dolphinscheduler-tools \
7474
-e DATABASE="postgresql" \
@@ -134,5 +134,5 @@ and use `admin` and `dolphinscheduler123` as default username and password in th
134134

135135
You can modify some environment variables to change configurations when you are starting servers through Docker. We have
136136
an example in [using exists PostgreSQL ZooKeeper](#using-exists-postgresql-zookeeper) to change database and ZooKeeper configurations,
137-
and you could find all environment variables in [all environment variables](https://github.com/apache/dolphinscheduler/blob/<version>/script/env/dolphinscheduler_env.sh) <!-- markdown-link-check-disable-line -->
137+
and you could find all environment variables in [all environment variables](https://github.com/apache/dolphinscheduler/blob/3.2.0/script/env/dolphinscheduler_env.sh) <!-- markdown-link-check-disable-line -->
138138
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.2.0
8+
9+
#### Links: [3.2.0 Document](../3.2.0/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-<version>-bin.tar.gz -C /opt
33+
tar -zxvf apache-dolphinscheduler-3.2.0-bin.tar.gz -C /opt
3434
cd /opt
35-
mv apache-dolphinscheduler-<version>-bin dolphinscheduler
35+
mv apache-dolphinscheduler-3.2.0-bin dolphinscheduler
3636
```
3737

3838
```markdown

0 commit comments

Comments
 (0)