Update policy lib to 2.5.1 74/119274/2 honolulu
authorvv770d <vv770d@att.com>
Fri, 12 Mar 2021 21:46:56 +0000 (21:46 +0000)
committerVijay Venkatesh Kumar <vv770d@att.com>
Fri, 12 Mar 2021 22:06:19 +0000 (22:06 +0000)
Fix for base64 encoding error from py2 to py3

Change-Id: I519b20e06a4f1f96dfb4788912f2cdc645f46d3f
Signed-off-by: vv770d <vv770d@att.com>
Issue-ID: DCAEGEN2-2671
Signed-off-by: vv770d <vv770d@att.com>
k8s/k8splugin_types.yaml
k8s/pom.xml
k8s/requirements.txt
k8s/setup.py

index 3529afe..945ed85 100644 (file)
@@ -24,7 +24,7 @@ plugins:
   k8s:
     executor: 'central_deployment_agent'
     package_name: k8splugin
-    package_version: 3.7.0
+    package_version: 3.8.0
 
 data_types:
 
index 158c048..7a14297 100644 (file)
@@ -29,7 +29,7 @@ limitations under the License.
   <groupId>org.onap.dcaegen2.platform.plugins</groupId>
   <artifactId>k8s</artifactId>
   <name>k8s-plugin</name>
-  <version>3.7.0-SNAPSHOT</version>
+  <version>3.8.0-SNAPSHOT</version>
   <url>http://maven.apache.org</url>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
index fbbd9ca..0fa6a1a 100644 (file)
@@ -1,6 +1,6 @@
 setuptools<45.0.0
 python-consul>=0.6.0
-onap-dcae-dcaepolicy-lib>=2.5.0
+onap-dcae-dcaepolicy-lib>=2.5.1
 kubernetes==12.0.1
 cloudify-common>=5.0.0; python_version<"3"
 cloudify-common>=5.1.0; python_version>="3"
index 9c0cac7..47dc38c 100644 (file)
@@ -24,13 +24,13 @@ from setuptools import setup
 setup(
     name='k8splugin',
     description='Cloudify plugin for containerized components deployed using Kubernetes',
-    version="3.7.0",
+    version="3.8.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.5.0',
+        'onap-dcae-dcaepolicy-lib>=2.5.1',
         'kubernetes==12.0.1',
         'cloudify-common>=5.0.0',
         'validators>=0.14.2',