K8s health utilities for cic containers

This commit is contained in:
Louis Holbrook
2021-04-21 17:34:13 +00:00
parent 3ee84f780e
commit 1bc7cde1f0
21 changed files with 471 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
a = ['foo']
kw = {
'bar': 42,
}
def health(*args, **kwargs):
args[0] == a[0]
kwargs['bar'] = kw['bar']

View File

@@ -0,0 +1,2 @@
def health(*args, **kwargs):
return False

View File

@@ -0,0 +1,2 @@
def health(*args, **kwargs):
return True