From 047cf3d4b4cdca8b0ce727777a94bb7ecc51b5ea Mon Sep 17 00:00:00 2001 From: Dominik Fleischmann Date: Wed, 1 Jul 2020 16:53:02 +0200 Subject: [PATCH 1/1] Update VNFD Check to new IM change After a discussion with the TSC the value that stated if a proxy charm is deployed on k8s has changed. Change-Id: I03b1a99b7fdd0f368ac43a194c78f38b1bd56b15 Signed-off-by: Dominik Fleischmann --- osm_lcm/ns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index 3951ae5..f7c06b0 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -1370,7 +1370,7 @@ class NsLcm(LcmBase): if deep_get(config_descriptor, ('juju', 'proxy')) is False: is_proxy_charm = False - if deep_get(config_descriptor, ('juju', 'k8s')) is True and is_proxy_charm: + if deep_get(config_descriptor, ('juju', 'cloud')) == 'k8s' and is_proxy_charm: is_k8s_proxy_charm = True if not is_k8s_proxy_charm: -- 2.25.1