Merge branch 'dev' into ui

This commit is contained in:
Jordan Blasenhauer 2023-11-20 17:07:58 +01:00
commit 4fe52d0f05
2 changed files with 12 additions and 0 deletions

View file

@ -1,4 +1,6 @@
{% if USE_OPEN_FILE_CACHE == "yes" +%}
open_file_cache {{ OPEN_FILE_CACHE }};
open_file_cache_errors {% if OPEN_FILE_CACHE_ERRORS == "yes" +%} on {% else +%} off {% endif +%};
open_file_cache_min_uses {{ OPEN_FILE_CACHE_MIN_USES }};
open_file_cache_valid {{ OPEN_FILE_CACHE_VALID }};
{% endif +%}

View file

@ -138,6 +138,16 @@ class KubernetesTest(Test):
cwd="/tmp/kubernetes",
shell=True,
)
run(
"kubectl describe pvc",
cwd="/tmp/kubernetes",
shell=True,
)
run(
"kubectl describe pv",
cwd="/tmp/kubernetes",
shell=True,
)
raise (Exception("k8s stack is not healthy"))
sleep(60)
except: