diff options
author | Schmalzried, Terry (ts862m) <ts862m@att.com> | 2019-01-17 14:44:29 -0500 |
---|---|---|
committer | Schmalzried, Terry (ts862m) <ts862m@att.com> | 2019-01-21 11:12:13 -0500 |
commit | 861fc4a4f2a036a3ff8c4974abcdd5c793858bcb (patch) | |
tree | 37333a204444001d0d24ddba5827a117d27e8136 /k8s | |
parent | 4805f9001e82c7d94eca6a5b4a0cb60ce8f53932 (diff) |
use new onap-dcae-dcaepolicy-lib
Issue-ID: DCAEGEN2-1086
Change-Id: I64f994e99b417f4d79ac95f64aa9596bb77ce8f0
Signed-off-by: Schmalzried, Terry (ts862m) <ts862m@att.com>
Diffstat (limited to 'k8s')
-rw-r--r-- | k8s/ChangeLog.md | 3 | ||||
-rw-r--r-- | k8s/k8s-node-type.yaml | 2 | ||||
-rw-r--r-- | k8s/pom.xml | 2 | ||||
-rw-r--r-- | k8s/requirements.txt | 4 | ||||
-rw-r--r-- | k8s/setup.py | 4 |
5 files changed, 9 insertions, 6 deletions
diff --git a/k8s/ChangeLog.md b/k8s/ChangeLog.md index bf3353e..70b5869 100644 --- a/k8s/ChangeLog.md +++ b/k8s/ChangeLog.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.4.5] +* DCAEGEN2-1086 update onap-dcae-dcaepolicy-lib version to avoid Consul stores under old service_component_name + ## [1.3.0] * Enhancement: Add support for changing the image running in the application container. ("Rolling upgrade") diff --git a/k8s/k8s-node-type.yaml b/k8s/k8s-node-type.yaml index dff1fd3..a6f1559 100644 --- a/k8s/k8s-node-type.yaml +++ b/k8s/k8s-node-type.yaml @@ -25,7 +25,7 @@ plugins: k8s: executor: 'central_deployment_agent' package_name: k8splugin - package_version: 1.4.4 + package_version: 1.4.5 data_types: diff --git a/k8s/pom.xml b/k8s/pom.xml index 39649ca..844f214 100644 --- a/k8s/pom.xml +++ b/k8s/pom.xml @@ -28,7 +28,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <groupId>org.onap.dcaegen2.platform.plugins</groupId> <artifactId>k8s</artifactId> <name>k8s-plugin</name> - <version>1.4.4-SNAPSHOT</version> + <version>1.4.5-SNAPSHOT</version> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> diff --git a/k8s/requirements.txt b/k8s/requirements.txt index 833039f..12d9fea 100644 --- a/k8s/requirements.txt +++ b/k8s/requirements.txt @@ -1,5 +1,5 @@ python-consul>=0.6.0,<1.0.0 uuid==1.30 -onap-dcae-dcaepolicy-lib==2.4.0 +onap-dcae-dcaepolicy-lib>=2.4.1,<3.0.0 kubernetes==4.0.0 -cloudify-plugins-common==3.4
\ No newline at end of file +cloudify-plugins-common==3.4 diff --git a/k8s/setup.py b/k8s/setup.py index 458328d..9b7f2bb 100644 --- a/k8s/setup.py +++ b/k8s/setup.py @@ -23,14 +23,14 @@ from setuptools import setup setup( name='k8splugin', description='Cloudify plugin for containerized components deployed using Kubernetes', - version="1.4.4", + version="1.4.5", author='J. F. Lucas, Michael Hwang, Tommy Carpenter', packages=['k8splugin','k8sclient','msb','configure'], zip_safe=False, install_requires=[ "python-consul>=0.6.0,<1.0.0", "uuid==1.30", - "onap-dcae-dcaepolicy-lib>=2.1.0,<3.0.0", + "onap-dcae-dcaepolicy-lib>=2.4.1,<3.0.0", "cloudify-plugins-common==3.4", "cloudify-python-importer==0.1.0", "kubernetes==4.0.0" |