Merge "Adapt selfLink calculation for Namespace objects."

This commit is contained in:
Zuul 2021-01-16 22:01:20 +00:00 committed by Gerrit Code Review
commit b3430b356f
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class NamespaceHandler(k8s_base.ResourceEventHandler):
LOG.debug('Namespace associated is not annotated: %s', ns) LOG.debug('Namespace associated is not annotated: %s', ns)
else: else:
LOG.debug('Removing annotation: %', ns_net_annotations) LOG.debug('Removing annotation: %', ns_net_annotations)
k8s.remove_annotations(ns['metadata']['selfLink'], k8s.remove_annotations(utils.get_res_link(ns),
constants.K8S_ANNOTATION_NET_CRD) constants.K8S_ANNOTATION_NET_CRD)
try: try:
k8s.delete(utils.get_res_link(net_crd)) k8s.delete(utils.get_res_link(net_crd))