AlinsRan commented on code in PR #1011: URL: https://github.com/apache/apisix-ingress-controller/pull/1011#discussion_r871921916
########## test/e2e/testdata/wolf-rbac/db-psql.sql: ########## @@ -0,0 +1,223 @@ + +-- you can change the password on initial the database. +/** +CREATE USER wolfroot WITH PASSWORD '123456'; +CREATE DATABASE wolf with owner=wolfroot ENCODING='UTF8'; +GRANT ALL PRIVILEGES ON DATABASE wolf to wolfroot; +*/ + +\c wolf; Review Comment: This is the content of `wolf-rbac` projects. It is used to initialize the database. The `wolf-server` cannot work normally without this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
