Merge "Fix k8s features for pyhton3 support"

This commit is contained in:
Zuul 2020-04-11 09:57:26 +00:00 committed by Gerrit Code Review
commit 567198331c
1 changed files with 2 additions and 3 deletions

View File

@ -214,9 +214,8 @@ class Transformer(object):
if tosca_kube_obj.labels:
if 'selector' in update_label:
del update_label['selector']
labels = dict(tosca_kube_obj.labels.items() + update_label.items())
else:
labels = update_label
update_label.update(tosca_kube_obj.labels)
labels = update_label
# Create and configure a spec section
pod_template = client.V1PodTemplateSpec(