From b8f1d0815a8be7bd0da0feda28cb21be4cc5f261 Mon Sep 17 00:00:00 2001 From: calvinscottforbes Date: Sun, 13 Nov 2022 23:01:42 -0500 Subject: [PATCH] Fixed password This password is different than the environment variable used in auth/manifests/secret.yaml, which causes an authentication issue with the database. --- src/auth/init.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/init.sql b/src/auth/init.sql index bb16054e..5d360904 100644 --- a/src/auth/init.sql +++ b/src/auth/init.sql @@ -1,4 +1,4 @@ -CREATE USER 'auth_user'@'localhost' IDENTIFIED BY 'Aauth123'; +CREATE USER 'auth_user'@'localhost' IDENTIFIED BY 'Auth123'; CREATE DATABASE auth;