diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2024-02-15 14:13:13 +0100 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2024-02-15 14:13:13 +0100 |
commit | 1d528a2481de5739cf710f57af2a8d36f9cd33b8 (patch) | |
tree | 352da02880b3a7a0274ac0641132ffcc496c6ea0 | |
parent | 6456ee5c010f7f8fb13cb979b456ad1c39d7634f (diff) |
Change default value of SDNC_DB_PRIMARY_HOST into mariadb-galera
That configuration value depends on the ONAP setup configuration but by default
SDNC uses mariadb-galera as a database
Issue-ID: TEST-404
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I91bdb6eda0384fd53455411ace53422417cbb610
-rw-r--r-- | src/onaptests/configuration/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/configuration/settings.py b/src/onaptests/configuration/settings.py index ec4bd84..a9e60b0 100644 --- a/src/onaptests/configuration/settings.py +++ b/src/onaptests/configuration/settings.py @@ -64,7 +64,7 @@ IN_CLUSTER = False VES_BASIC_AUTH = {'username': 'sample1', 'password': 'sample1'} IF_VALIDATION = False SDNC_SECRET_NAME = "onap-sdnc-db-secret" -SDNC_DB_PRIMARY_HOST = "sdnc-db.onap.svc.cluster.local" +SDNC_DB_PRIMARY_HOST = "mariadb-galera.onap.svc.cluster.local" SDNC_DB_PORT = 3306 |