mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Merge branch 'dev' into ui
This commit is contained in:
commit
4fe52d0f05
2 changed files with 12 additions and 0 deletions
|
|
@ -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 +%}
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue