Fix is_host_network()

Seems like due to a mistake we've made is_host_network utility function
to always return False. This means that we considered hostNetworking
pods as regular one, ending up creating additional unused ports. Besides
that some anomalies regarding network policy could occur too as function
is used there.

Closes-Bug: 1899182
Change-Id: I0dade137b83499c80ec81cadf6437ea4e70d02c1
This commit is contained in:
liujinxin 2020-10-09 18:36:57 +08:00 committed by Michał Dulko
parent f508b9bae5
commit 402df1e8e1
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def get_vifs(pod):
def is_host_network(pod):
return pod['status'].get('hostNetwork', False)
return pod['spec'].get('hostNetwork', False)
def get_pods(selector, namespace=None):