summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lucas <jflos@sonoris.net>2021-03-08 12:59:34 -0500
committerJack Lucas <jflos@sonoris.net>2021-03-08 12:59:34 -0500
commita59d57d9944510dc6968919b330b98751c295f30 (patch)
treec0e7182efc23264d25e6c43d2c8ff34e0b8d4142
parent721b765248cd1661a06470e190b8467fe777d3dd (diff)
Update to python3 version of policy lib
Issue-ID: DCAEGEN2-2662 Issue-ID: INT-1819 Signed-off-by: Jack Lucas <jflos@sonoris.net> Change-Id: Ia18d600e8c669b0b656799195f9b6126f01bf14f
-rw-r--r--k8s/k8splugin_types.yaml2
-rw-r--r--k8s/pom.xml2
-rw-r--r--k8s/requirements.txt2
-rw-r--r--k8s/setup.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/k8s/k8splugin_types.yaml b/k8s/k8splugin_types.yaml
index b089184..3529afe 100644
--- a/k8s/k8splugin_types.yaml
+++ b/k8s/k8splugin_types.yaml
@@ -24,7 +24,7 @@ plugins:
k8s:
executor: 'central_deployment_agent'
package_name: k8splugin
- package_version: 3.6.0
+ package_version: 3.7.0
data_types:
diff --git a/k8s/pom.xml b/k8s/pom.xml
index c895adb..158c048 100644
--- a/k8s/pom.xml
+++ b/k8s/pom.xml
@@ -29,7 +29,7 @@ limitations under the License.
<groupId>org.onap.dcaegen2.platform.plugins</groupId>
<artifactId>k8s</artifactId>
<name>k8s-plugin</name>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.7.0-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 d98b55e..fbbd9ca 100644
--- a/k8s/requirements.txt
+++ b/k8s/requirements.txt
@@ -1,6 +1,6 @@
setuptools<45.0.0
python-consul>=0.6.0
-onap-dcae-dcaepolicy-lib>=2.4.1
+onap-dcae-dcaepolicy-lib>=2.5.0
kubernetes==12.0.1
cloudify-common>=5.0.0; python_version<"3"
cloudify-common>=5.1.0; python_version>="3"
diff --git a/k8s/setup.py b/k8s/setup.py
index b9c6c22..9c0cac7 100644
--- a/k8s/setup.py
+++ b/k8s/setup.py
@@ -24,13 +24,13 @@ from setuptools import setup
setup(
name='k8splugin',
description='Cloudify plugin for containerized components deployed using Kubernetes',
- version="3.6.0",
+ version="3.7.0",
author='J. F. Lucas, Michael Hwang, Tommy Carpenter, Joanna Jeremicz, Sylwia Jakubek, Jan Malkiewicz, Remigiusz Janeczek, Piotr Marcinkiewicz',
packages=['k8splugin','k8sclient','configure'],
zip_safe=False,
install_requires=[
'python-consul>=0.6.0',
- 'onap-dcae-dcaepolicy-lib>=2.4.1',
+ 'onap-dcae-dcaepolicy-lib>=2.5.0',
'kubernetes==12.0.1',
'cloudify-common>=5.0.0',
'validators>=0.14.2',