From 93dd5c424f4e8b92ecbd55275760efc25d80ed82 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Thu, 27 Jun 2024 10:14:46 -0700 Subject: [PATCH] Update edh-elo commit --- charts/edh-elo/values.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/edh-elo/values.yaml b/charts/edh-elo/values.yaml index 3f4c4ca..c52edd6 100644 --- a/charts/edh-elo/values.yaml +++ b/charts/edh-elo/values.yaml @@ -16,6 +16,8 @@ postgresql: scripts: psql.sql: | CREATE USER db_user WITH PASSWORD 'pass'; + GRANT ALL PRIVILEGES ON DATABASE postgres TO db_user; + GRANT ALL ON SCHEMA public TO db_user; ############