summaryrefslogtreecommitdiffstats
path: root/k8s
diff options
context:
space:
mode:
Diffstat (limited to 'k8s')
-rw-r--r--k8s/ChangeLog.md3
-rw-r--r--k8s/k8s-node-type.yaml2
-rw-r--r--k8s/pom.xml2
-rw-r--r--k8s/requirements.txt4
-rw-r--r--k8s/setup.py4
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"