-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
45 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,5 +48,3 @@ RUN \ | |
chmod \ | ||
744 \ | ||
/usr/bin/envsubst | ||
|
||
ENTRYPOINT [ "/opt/entrypoint.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
CREATE USER `superset` IDENTIFIED BY `mysql`; | ||
CREATE USER IF NOT EXISTS 'superset'@'%' IDENTIFIED BY 'mysql'; | ||
CREATE DATABASE IF NOT EXISTS `superset`; | ||
GRANT ALL PRIVILEGES ON `superset`.* TO `superset`; | ||
GRANT INSERT ON `mysql_innodb_cluster_metadata`.* TO `superset`; | ||
GRANT SELECT ON `performance_schema`.* TO `superset` WITH GRANT OPTION; | ||
GRANT CREATE USER ON *.* TO `superset`; | ||
GRANT SELECT, EXECUTE ON `mysql_innodb_cluster_metadata`.* TO `superset` WITH GRANT OPTION; | ||
GRANT INSERT, UPDATE, DELETE ON `mysql_innodb_cluster_metadata.routers` TO `superset` WITH GRANT OPTION; | ||
GRANT INSERT, UPDATE, DELETE ON `mysql_innodb_cluster_metadata.v2_routers` TO `superset` WITH GRANT OPTION; | ||
GRANT SELECT ON `mysql.user` TO `superset`; | ||
GRANT ALL PRIVILEGES ON `superset`.* TO 'superset'@'%'; | ||
GRANT INSERT ON `mysql_innodb_cluster_metadata`.* TO 'superset'@'%'; | ||
GRANT SELECT ON `performance_schema`.* TO 'superset'@'%' WITH GRANT OPTION; | ||
GRANT CREATE USER ON *.* TO 'superset'@'%'; | ||
GRANT SELECT, EXECUTE ON `mysql_innodb_cluster_metadata`.* TO 'superset'@'%' WITH GRANT OPTION; | ||
GRANT INSERT, UPDATE, DELETE ON `mysql_innodb_cluster_metadata`.`routers` TO 'superset'@'%' WITH GRANT OPTION; | ||
GRANT INSERT, UPDATE, DELETE ON `mysql_innodb_cluster_metadata`.`v2_routers` TO 'superset'@'%' WITH GRANT OPTION; | ||
GRANT SELECT ON `mysql`.`user` TO 'superset'@'%'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters