File tree 2 files changed +5
-5
lines changed
integration/kubernetes/confidential
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ load "${TESTS_REPO_DIR}/integration/kubernetes/confidential/lib.sh"
28
28
29
29
# Delete all test services
30
30
k8s_delete_all () {
31
- for file in $( ls " ${TEST_DIR} / *.yaml" ) ; do
32
- # Removing extension to get the pod name
33
- local pod_name= " ${file% .* } "
34
- kubernetes_delete_by_yaml " ${pod_name } " " ${TEST_DIR} / ${file} "
31
+ for file in $( find " ${TEST_DIR} " -name " *.yaml" ) ; do
32
+ # Removing prefix path and file extension to get the pod partial name
33
+ local pod_partial_name= $( basename " ${file% .* } " )
34
+ kubernetes_delete_by_yaml " ${pod_partial_name } " " ${file} "
35
35
done
36
36
}
37
37
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ externals:
72
72
simple-kbs :
73
73
description : " Simple KBS that hosts key storage with release policies"
74
74
url : " https://github.com/confidential-containers/simple-kbs.git"
75
- tag : " 0 .1.1 "
75
+ tag : " v0 .1.3 "
76
76
77
77
sonobuoy :
78
78
description : " Tool to run kubernetes e2e conformance tests"
You can’t perform that action at this time.
0 commit comments