diff options
author | Ramesh Parthasarathy <rp6768@att.com> | 2018-09-26 21:48:34 +0000 |
---|---|---|
committer | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-10-03 14:48:17 +0000 |
commit | e45751fcb07d2764dcbf33dd5a33ef37e94cabdb (patch) | |
tree | 8682ebd580a625cb3b044678faf694bcb570808c /kubernetes/so/charts/so-db-secrets/values.yaml | |
parent | d63d5676acbf39518f6f3a51e73d2ced44e56d8a (diff) |
Implement SO users with Helm
use regular and admin user with SO-MariaDB for the containers
Change-Id: I236798d864e673a56c6c50181913312505ae9e79
Issue-ID: SO-1094
Signed-off-by: Ramesh Parthasarathy(rp6768)<rp6768@att.com>
Diffstat (limited to 'kubernetes/so/charts/so-db-secrets/values.yaml')
-rw-r--r-- | kubernetes/so/charts/so-db-secrets/values.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kubernetes/so/charts/so-db-secrets/values.yaml b/kubernetes/so/charts/so-db-secrets/values.yaml index f3387efad3..8836802069 100644 --- a/kubernetes/so/charts/so-db-secrets/values.yaml +++ b/kubernetes/so/charts/so-db-secrets/values.yaml @@ -13,7 +13,8 @@ # limitations under the License. db_host: so-mariadb db_port: "3306" -db_admin_username: root -db_admin_password: password -db_username: root -db_password: password +db_admin_username: so_admin +db_admin_password: so_Admin123 +db_username: so_user +db_password: so_User123 + |