From 6c9db9b853d2a0073d4b2fe6d607663f438d9000 Mon Sep 17 00:00:00 2001 From: Eric Ernst Date: Tue, 7 Jan 2020 16:50:30 -0800 Subject: [PATCH] kata-deploy-action: test CLH Make sure we test CLH Signed-off-by: Eric Ernst --- kata-deploy/action/test-kata.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kata-deploy/action/test-kata.sh b/kata-deploy/action/test-kata.sh index 2fa2f226a5..1cee22f8d4 100755 --- a/kata-deploy/action/test-kata.sh +++ b/kata-deploy/action/test-kata.sh @@ -66,7 +66,7 @@ function run_test() { cmd="kubectl get pods | grep $busybox_pod | grep Completed" wait_time=120 - configurations=("nginx-deployment-qemu" "nginx-deployment-qemu-virtiofs") + configurations=("nginx-deployment-qemu" "nginx-deployment-qemu-virtiofs" "nginx-deployment-clh") for deployment in "${configurations[@]}"; do # start the kata pod: kubectl apply -f "$YAMLPATH/examples/${deployment}.yaml" @@ -113,6 +113,7 @@ function test_kata() { kubectl apply -f "$YAMLPATH/kata-rbac/base/kata-rbac.yaml" # apply runtime classes: + kubectl apply -f "$YAMLPATH/k8s-1.14/kata-clh-runtimeClass.yaml" kubectl apply -f "$YAMLPATH/k8s-1.14/kata-qemu-runtimeClass.yaml" kubectl apply -f "$YAMLPATH/k8s-1.14/kata-qemu-virtiofs-runtimeClass.yaml"