Skip to content
Snippets Groups Projects
Commit 5c2fd942 authored by Erik Reid's avatar Erik Reid
Browse files

set published=True

parent 48b543b0
No related branches found
No related tags found
No related merge requests found
...@@ -43,11 +43,14 @@ def _make_check(check_params, interface): ...@@ -43,11 +43,14 @@ def _make_check(check_params, interface):
'metadata': { 'metadata': {
'name': _check_name(interface), 'name': _check_name(interface),
'namespace': check_params['namespace'] 'namespace': check_params['namespace']
} },
'publish': True
} }
def _checks_match(a, b) -> bool: def _checks_match(a, b) -> bool:
if a['publish'] != b['publish']:
return False
if a['command'] != b['command']: if a['command'] != b['command']:
return False return False
if a['interval'] != b['interval']: if a['interval'] != b['interval']:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment