X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=deploy%2Fkata%2Fkata.sh;h=75ca024cd0fad57bfa0510781cec97128ce6b2e7;hb=867e35bfafc667ae19d9773dda6d74780dea72c7;hp=ec3ade4af21921f623d549d6e8a2cafa9cc366ac;hpb=47623705343c39416af4b272ff01b36ae097ddb7;p=icn.git diff --git a/deploy/kata/kata.sh b/deploy/kata/kata.sh index ec3ade4..75ca024 100755 --- a/deploy/kata/kata.sh +++ b/deploy/kata/kata.sh @@ -64,12 +64,21 @@ function clean_webhook { kustomize build ${BUILDDIR}/webhook/base | KUBECONFIG=${cluster_kubeconfig} kubectl delete -f - } +function is_kata_deployed { + local -r cluster_name=${CLUSTER_NAME:-e2etest} + local -r cluster_kubeconfig="${BUILDDIR}/${cluster_name}.conf" + kubectl --kubeconfig=${cluster_kubeconfig} get runtimeclass/kata-qemu +} + function test_kata { # Create a temporary kubeconfig file for the tests local -r cluster_name=${CLUSTER_NAME:-e2etest} local -r cluster_kubeconfig="${BUILDDIR}/${cluster_name}.conf" clusterctl -n metal3 get kubeconfig ${cluster_name} >${cluster_kubeconfig} + # Ensure that Kata has been deployed first + wait_for is_kata_deployed + deploy_webhook ${cluster_name} clone_kud_repository pushd ${KUDPATH}/kud/tests