diff options
author | Niranjana <niranjana.y60@wipro.com> | 2021-02-25 13:06:43 +0000 |
---|---|---|
committer | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2021-02-26 16:38:17 +0100 |
commit | d5736e57d30ff63b566a5ecfa91486ac76839c32 (patch) | |
tree | a15e1f0b21467abc942150501da84d22225e43c7 | |
parent | ecbe50796382913774298b4332bcde5617241616 (diff) |
Update blueprint of Slice Analysis MS with new fields
Issue-ID: DCAEGEN2-2623
Signed-off-by: Niranjana <niranjana.y60@wipro.com>
Change-Id: Ic55a3e0ea05533149efde5c9f747add90c338ada
-rw-r--r-- | Changelog.md | 1 | ||||
-rw-r--r-- | blueprints/k8s-slice-analysis-ms.yaml | 19 |
2 files changed, 18 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md index 0fb8081..ebe6848 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [DCAEGEN2-2585](https://jira.onap.org/browse/DCAEGEN2-2585) - Add new Kpi-Computation-ms - [DCAEGEN-2536](https://jira.onap.org/browse/DCAEGEN2-2536) - Add JWT support in HTTP/HTTPS based locations - [DCAEGEN2-2599](https://jira.onap.org/browse/DCAEGEN2-2599) - Vulnerability removal for son-handler + - [DCAEGEN2-2623](https://jira.onap.org/browse/DCAEGEN2-2623) - Add new fields to Slice-analysis-ms blueprint (AAI update) ## [3.0.2] - 2021-02-15 ### Changed diff --git a/blueprints/k8s-slice-analysis-ms.yaml b/blueprints/k8s-slice-analysis-ms.yaml index 1a66579..eb12285 100644 --- a/blueprints/k8s-slice-analysis-ms.yaml +++ b/blueprints/k8s-slice-analysis-ms.yaml @@ -1,6 +1,6 @@ # #============LICENSE_START======================================================= - #Copyright (C) 2020 Wipro Limited. + #Copyright (C) 2020-2021 Wipro Limited. #============================================================================== #Licensed under the Apache License, Version 2.0 (the "License"); #you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ inputs: tag_version: type: string description: docker image name and version - default: "nexus3.onap.org:10001/onap/org.onap.dcaegen2.services.components.slice-analysis-ms:1.0.3" + default: "nexus3.onap.org:10001/onap/org.onap.dcaegen2.services.components.slice-analysis-ms:1.0.4" pgaas_cluster_name: type: string description: pg cluster @@ -81,6 +81,18 @@ inputs: type: string description: config db location default: "http://config-db:8080" + aai: + type: string + description: aai url + default: "https://aai.onap.svc.cluster.local:8443/aai/v21" + cps: + type: string + description: cps url + default: "https://cps:8088" + configDbEnabled: + type: string + description: configDb flag + default: "true" log_path: type: string description: log location in host @@ -196,6 +208,9 @@ node_templates: sliceanalysisms.cg: { get_input: cg } sliceanalysisms.cid: { get_input: cid } sliceanalysisms.configDb.service: { get_input: config_db } + sliceanalysisms.configDbEnabled: { get_input: configDbEnabled } + sliceanalysisms.aai.url: { get_input: aai } + sliceanalysisms.cps.url: { get_input: cps } sliceanalysisms.samples: { get_input: samples } sliceanalysisms.minPercentageChange: { get_input: minimumPercentageChange } sliceanalysisms.initialDelaySeconds: { get_input: initialDelaySeconds } |