[Release-for-2.0.9] update version (#14227)
* fix #13760 * pre-209 --------- Co-authored-by: JinyLeeChina <jiny.li@foxmail.com>
This commit is contained in:
parent
7c73e3f903
commit
f8f6302068
|
|
@ -44,7 +44,7 @@ services:
|
|||
- dolphinscheduler
|
||||
|
||||
dolphinscheduler-api:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: api-server
|
||||
ports:
|
||||
- 12345:12345
|
||||
|
|
@ -68,7 +68,7 @@ services:
|
|||
- dolphinscheduler
|
||||
|
||||
dolphinscheduler-alert:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: alert-server
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
|
|
@ -87,7 +87,7 @@ services:
|
|||
- dolphinscheduler
|
||||
|
||||
dolphinscheduler-master:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: master-server
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
- dolphinscheduler
|
||||
|
||||
dolphinscheduler-worker:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: worker-server
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ services:
|
|||
replicas: 1
|
||||
|
||||
dolphinscheduler-api:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: api-server
|
||||
ports:
|
||||
- 12345:12345
|
||||
|
|
@ -71,7 +71,7 @@ services:
|
|||
replicas: 1
|
||||
|
||||
dolphinscheduler-alert:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: alert-server
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
|
|
@ -90,7 +90,7 @@ services:
|
|||
replicas: 1
|
||||
|
||||
dolphinscheduler-master:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: master-server
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
replicas: 1
|
||||
|
||||
dolphinscheduler-worker:
|
||||
image: apache/dolphinscheduler:2.0.7
|
||||
image: apache/dolphinscheduler:2.0.9
|
||||
command: worker-server
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ version: 2.0.3
|
|||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application.
|
||||
appVersion: 2.0.7
|
||||
appVersion: 2.0.9
|
||||
|
||||
dependencies:
|
||||
- name: postgresql
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ timezone: "Asia/Shanghai"
|
|||
|
||||
image:
|
||||
repository: "apache/dolphinscheduler"
|
||||
tag: "2.0.7"
|
||||
tag: "2.0.9"
|
||||
pullPolicy: "IfNotPresent"
|
||||
pullSecret: ""
|
||||
|
||||
|
|
|
|||
|
|
@ -959,7 +959,7 @@ CREATE TABLE t_ds_version
|
|||
-- Records of t_ds_version
|
||||
-- ----------------------------
|
||||
INSERT INTO t_ds_version
|
||||
VALUES ('1', '2.0.7');
|
||||
VALUES ('1', '2.0.9');
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
|
|
|
|||
|
|
@ -946,7 +946,7 @@ CREATE TABLE `t_ds_version` (
|
|||
-- ----------------------------
|
||||
-- Records of t_ds_version
|
||||
-- ----------------------------
|
||||
INSERT INTO `t_ds_version` VALUES ('1', '2.0.7');
|
||||
INSERT INTO `t_ds_version` VALUES ('1', '2.0.9');
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
|
|
|
|||
|
|
@ -933,7 +933,7 @@ INSERT INTO t_ds_queue(queue_name, queue, create_time, update_time)
|
|||
VALUES ('default', 'default', '2018-11-29 10:22:33', '2018-11-29 10:22:33');
|
||||
|
||||
-- Records of t_ds_queue,default queue name : default
|
||||
INSERT INTO t_ds_version(version) VALUES ('2.0.7');
|
||||
INSERT INTO t_ds_version(version) VALUES ('2.0.9');
|
||||
|
||||
--
|
||||
-- Table structure for table t_ds_plugin_define
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.0.7
|
||||
2.0.9
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
|
@ -32,7 +32,7 @@ if sys.version_info[0] < 3:
|
|||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
version = "2.0.7"
|
||||
version = "2.0.9"
|
||||
|
||||
# Start package required
|
||||
prod = [
|
||||
|
|
|
|||
Loading…
Reference in New Issue