diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2022-06-20 14:34:03 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2022-06-20 14:34:03 -0500 |
commit | e404c65df661b49d844b2f67fa0076a3a960554a (patch) | |
tree | ac0df147e5e15279e9f43c4afe8da1b513ee4aa9 /packages/install/src | |
parent | ead010efb5fca9bd0eaaaa6285de34cdbfef1963 (diff) |
Allow for flexible specification of JDBC driver
Issue-ID: POLICY-4177
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: If33934f79dbe41200e57816781089c63f05b8d67
Diffstat (limited to 'packages/install/src')
-rw-r--r-- | packages/install/src/files/base.conf | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/packages/install/src/files/base.conf b/packages/install/src/files/base.conf index aac21256..86eb934e 100644 --- a/packages/install/src/files/base.conf +++ b/packages/install/src/files/base.conf @@ -2,7 +2,7 @@ # ============LICENSE_START======================================================= # ONAP # ================================================================================ -# Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2017-2022 AT&T Intellectual Property. All rights reserved. # Modifications Copyright (C) 2020 Bell Canada. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); @@ -69,11 +69,21 @@ REPOSITORY_OFFLINE= # Relational (SQL) DB access +# override the mysql tool command in tooling with custom parameters +MYSQL_CMD=mysql + +# mandatory parameters for the DB server location SQL_HOST= SQL_USER= SQL_PASSWORD= SQL_PORT=3306 +# override the JDBC urls to support customizations +JDBC_URL= + +# add optional JDBC options for the connector to use +JDBC_OPTS= + # AAF AAF=false |