Skip to content

Commit

Permalink
#511 console / executor runtime upgrade to jdk8
Browse files Browse the repository at this point in the history
  • Loading branch information
kfchu committed Sep 26, 2018
1 parent 3b9a86e commit 4c3c3ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion saturn-docker/demo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM java:7
FROM java:8

ARG SATURN_EXECUTOR_DOWNLOAD_URL

Expand Down
2 changes: 1 addition & 1 deletion saturn-docker/saturn-console/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM java:7
FROM java:8

ARG SATURN_CONSOLE_DOWNLOAD_URL

Expand Down
3 changes: 2 additions & 1 deletion saturn-docker/saturn-db/saturn-console.sql
Original file line number Diff line number Diff line change
Expand Up @@ -444,5 +444,6 @@ INSERT INTO `role_permission`(`role_key`, `permission_key`) VALUES('namespace_ad
#data
INSERT INTO `zk_cluster_info`(`zk_cluster_key`, `alias`, `connect_string`) VALUES('cluster1', '集群1', 'console:2181');
INSERT INTO `namespace_zkcluster_mapping`(`namespace`, `name`, `zk_cluster_key`) VALUES('saturn-it.vip.com', '业务组', 'cluster1');
INSERT INTO sys_config(property,value) values('CONSOLE_ZK_CLUSTER_MAPPING','default:cluster1');
INSERT INTO sys_config(property,value) VALUES('CONSOLE_ZK_CLUSTER_MAPPING','default:cluster1');
INSERT INTO `namespace_info`(`namespace`) VALUES('saturn-it.vip.com');

0 comments on commit 4c3c3ce

Please sign in to comment.