[MOD/onboarding] Switch to v3 component spec 04/124404/2 2.13.0-mod-onboardingapi
authorvv770d <vv770d@att.com>
Tue, 21 Sep 2021 19:25:00 +0000 (19:25 +0000)
committervv770d <vv770d@att.com>
Mon, 27 Sep 2021 19:20:16 +0000 (19:20 +0000)
Change-Id: I31f05857aebb606fc032065800e57fcc5be1dd96
Signed-off-by: vv770d <vv770d@att.com>
Issue-ID: DCAEGEN2-2876
Signed-off-by: vv770d <vv770d@att.com>
mod/onboardingapi/ChangeLog.md
mod/onboardingapi/Dockerfile
mod/onboardingapi/pom.xml
mod/onboardingapi/setup.py

index ede9878..1de9363 100644 (file)
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/) 
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
+## [2.13.0] - 2021/09/21
+
+Changed
+  - [DCAEGEN2-2876] - Support v3 component spec for helm flow support
+
+
 ## [2.12.5]
 
 * Fix component-spec-schema bug: Failed validating 'oneOf' in schema['properties']['volumes']['items']
index d25d183..e5ca734 100644 (file)
@@ -1,5 +1,6 @@
 # ============LICENSE_START=======================================================
 # Copyright 2020 Deutsche Telekom. All rights reserved.
+# Copyright (c) 2021 AT&T Intellectual Property. All rights reserved.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -16,7 +17,7 @@
 FROM nexus3.onap.org:10001/onap/integration-python:7.0.1
 
 ENV SERVER_URL=https://git.onap.org/dcaegen2/platform/plain/mod
-ENV PATH_COMPONENT_SPEC=/component-json-schemas/component-specification/dcae-cli-v2/component-spec-schema.json
+ENV PATH_COMPONENT_SPEC=/component-json-schemas/component-specification/dcae-cli-v3/component-spec-schema.json
 ENV PATH_DATA_FORMAT=/component-json-schemas/data-format/dcae-cli-v1/data-format-schema.json
 ENV PG_CONN=
 
@@ -30,8 +31,10 @@ RUN apk update && \
     mkdir schemas && \
     wget -O schemas/compspec.json $SERVER_URL$PATH_COMPONENT_SPEC && \
     wget -O schemas/dataformat.json $SERVER_URL$PATH_DATA_FORMAT && \
+    pip install --upgrade pip && \
     pip install .
 
+
 USER onap
 
 EXPOSE 8080
index c9da793..e208b08 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!--
 ================================================================================
-Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
+Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved.
 Copyright 2020 Deutsche Telekom. All rights reserved.
 Copyright 2021 Nokia All rights reserved.
 ================================================================================
@@ -24,7 +24,7 @@ limitations under the License.
   <groupId>org.onap.dcaegen2.platform.mod</groupId>
   <artifactId>dcaegen2-platform-mod-onboardingapi</artifactId>
   <name>dcaegen2-platform-mod-onboardingapi</name>
-  <version>2.12.5-SNAPSHOT</version>
+  <version>2.13.0-SNAPSHOT</version>
   <url>http://maven.apache.org</url>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
index 12eabc0..7f3bee2 100644 (file)
@@ -47,7 +47,7 @@ setup(
                       'Werkzeug==0.16.1',
                       'python-consul<1.0.0',
                       'six',
-                      'sqlalchemy',
+                      'sqlalchemy==1.3.23',
                       'SQLAlchemy-Utils',
                       'click>=6.0,<7.0',
                       'jsonschema',