diff options
author | waynedunican <wayne.dunican@est.tech> | 2022-01-05 14:56:44 +0000 |
---|---|---|
committer | Wayne Dunican <wayne.dunican@est.tech> | 2022-01-27 07:41:05 +0000 |
commit | 518e56befaeb44df719c2d1db7daf7b0de6f3c1d (patch) | |
tree | 0a8a1974a1e0319986d33513c57dfa5d5717ba04 /main/src/test/resources/parameters | |
parent | 3878aab0518225fcebedfddb1b4aa9c468773dba (diff) |
Remove references to MariaDB from resource files
Issue-ID: POLICY-2086
Change-Id: I891feb05d2e964ae8d4454d30672ffc77c1da555
Signed-off-by: Wayne Dunican <wayne.dunican@est.tech>
Diffstat (limited to 'main/src/test/resources/parameters')
-rw-r--r-- | main/src/test/resources/parameters/PapConfigParameters_Postgres.json | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/main/src/test/resources/parameters/PapConfigParameters_Postgres.json b/main/src/test/resources/parameters/PapConfigParameters_Postgres.json new file mode 100644 index 00000000..46d25b10 --- /dev/null +++ b/main/src/test/resources/parameters/PapConfigParameters_Postgres.json @@ -0,0 +1,64 @@ +{ + "name": "PapGroup", + "restServerParameters": { + "host": "0.0.0.0", + "port": 6969, + "userName": "healthcheck", + "password": "zb!XztG34", + "https": false + }, + "pdpParameters": { + "heartBeatMs": 60000, + "updateParameters": { + "maxRetryCount": 1, + "maxWaitMs": 30000 + }, + "stateChangeParameters": { + "maxRetryCount": 1, + "maxWaitMs": 30000 + } + }, + "databaseProviderParameters": { + "name": "PolicyProviderParameterGroup", + "implementation": "org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl", + "databaseDriver": "org.postgresql.Driver", + "databaseUrl": "jdbc:postgresql://localhost:5432/policyadmin", + "databaseUser": "policy_user", + "databasePassword": "policy_user", + "persistenceUnit": "PolicyDb" + }, + "topicParameterGroup": { + "topicSources" : [{ + "topic" : "POLICY-PDP-PAP", + "servers" : [ "localhost:3904" ], + "topicCommInfrastructure" : "dmaap" + }], + "topicSinks" : [{ + "topic" : "POLICY-PDP-PAP", + "servers" : [ "localhost:3904" ], + "topicCommInfrastructure" : "dmaap" + },{ + "topic" : "POLICY-NOTIFICATION", + "servers" : [ "localhost:3904" ], + "topicCommInfrastructure" : "dmaap" + }] + }, + "healthCheckRestClientParameters":[{ + "clientName": "api", + "hostname": "policy-api", + "port": 6968, + "userName": "healthcheck", + "password": "zb!XztG34", + "useHttps": false, + "basePath": "policy/api/v1/healthcheck" + }, + { + "clientName": "distribution", + "hostname": "policy-distribution", + "port": 6970, + "userName": "healthcheck", + "password": "zb!XztG34", + "useHttps": false, + "basePath": "healthcheck" + }] +} |