From: krishna Date: Thu, 5 Sep 2019 10:47:59 +0000 (+0530) Subject: Add cbs polling interval to app config in blueprints X-Git-Tag: 1.1.1~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=fca15d45403357f6d05c4258b0e2cd8d0a82c77c;p=dcaegen2%2Fservices%2Fson-handler.git Add cbs polling interval to app config in blueprints Change-Id: I916b2d84e3cd2bb056e226311639bd973fa86c92 Issue-ID: DCAEGEN2-1642 Signed-off-by: krishna --- diff --git a/dpo/blueprints/k8s-sonhms-inputs.yaml b/dpo/blueprints/k8s-sonhms-inputs.yaml index 0efdc1f..4dd46f9 100644 --- a/dpo/blueprints/k8s-sonhms-inputs.yaml +++ b/dpo/blueprints/k8s-sonhms-inputs.yaml @@ -24,6 +24,7 @@ aaf_username: aaf_password: polling_interval: 20 polling_timeout: 60 +cbs_polling_interval: 60 num_solutions: 5 min_collision: 5 min_confusion: 5 diff --git a/dpo/blueprints/k8s-sonhms.yaml b/dpo/blueprints/k8s-sonhms.yaml index 5242577..aefe959 100644 --- a/dpo/blueprints/k8s-sonhms.yaml +++ b/dpo/blueprints/k8s-sonhms.yaml @@ -49,6 +49,10 @@ inputs: type: integer description: dmaap polling interval default: 20 + cbs_polling_interval: + type: integer + description: cbs polling interval + default: 60 polling_timeout: type: integer description: dmaap polling timeout @@ -253,6 +257,7 @@ node_templates: postgres.password: { get_attribute: [ pgaasvm, admin, password ] } sonhandler.pollingInterval: { get_input: polling_interval} sonhandler.pollingTimeout: { get_input: polling_timeout } + cbsPollingInterval: { get_input: cbs_polling_interval } sonhandler.numSolutions: { get_input: num_solutions } sonhandler.minCollision: { get_input: min_collision } sonhandler.minConfusion: { get_input: min_confusion }