From bd7d70b16ffce30e31acd0bf1013b1392ca5fb81 Mon Sep 17 00:00:00 2001 From: Joanna Jeremicz Date: Fri, 26 Jun 2020 16:53:53 +0200 Subject: Add support to request certificates from CMPv2 server in DCAE cloudify blueprints If the blueprint specifies that the component uses external TLS via the `external_cert` property, the `Deployment` includes an additional init container and the component's container. The init container populates the external TLS certificate artifacts in mounted volume. The container requires CMPv2 CertService to work properly. Issue-ID: DCAEGEN2-2252 Signed-off-by: Joanna Jeremicz Change-Id: I90cb79120ffaf634fc1f5b8a03a83abb30deb2b7 --- k8s/setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'k8s/setup.py') diff --git a/k8s/setup.py b/k8s/setup.py index 6c82295..fbe623c 100644 --- a/k8s/setup.py +++ b/k8s/setup.py @@ -3,6 +3,7 @@ # ================================================================================ # Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved. # Copyright (c) 2020 Pantheon.tech. All rights reserved. +# Copyright (c) 2020 Nokia. 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. @@ -22,8 +23,8 @@ from setuptools import setup setup( name='k8splugin', description='Cloudify plugin for containerized components deployed using Kubernetes', - version="3.0.0", - author='J. F. Lucas, Michael Hwang, Tommy Carpenter', + version="3.1.0", + author='J. F. Lucas, Michael Hwang, Tommy Carpenter, Joanna Jeremicz', packages=['k8splugin','k8sclient','configure'], zip_safe=False, install_requires=[ -- cgit 1.2.3-korg