intel-device-plugins-for-ku.../scripts/jenkins/qat/tc-deploy.sh
Rivera Gonzalez, Julio C a0ba1b38fe Add CI Jenkins stage with test case for intel-device-plugin: QAT
This commit adds bash scripts with the proper granularity for each sub-stage,
needed for QAT device main stage validation.

Signed-off-by: Rivera Gonzalez, Julio C <julio.c.rivera.gonzalez@intel.com>
2019-12-03 11:59:15 -06:00

20 lines
448 B
Bash
Executable File

#!/bin/sh
#
# Copyright 2019 Intel Corporation.
#
# SPDX-License-Identifier: Apache-2.0
#
# Deploys current jenkins-build test image for dpdk-app (crypto-perf)
# in the cluster.
set -o pipefail
set -o xtrace
set -o errexit
REPO_ROOT=$(realpath $(dirname $0)/../../..)
for test in $(ls -d ${REPO_ROOT}/deployments/qat_dpdk_app/test-*); do
kubectl apply -k $test &
done
wait
kubectl wait --for=condition=Ready pod --all --timeout=5m && sleep 60s