blob: 20fc2c7dd54574f9bd26f82794b49616434b50dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
#
# This is wrapper script for executing kud deployment
# in community CI jenkins.
# Purpose is to gate all repo commits.
# In addition to KUD deployment testing itself, also all tests are run for k8s plugin as well.
#
set -x -e -o pipefail
curr_dir="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")"
cd ${curr_dir}/../hosting_providers/baremetal
export KUD_ADDONS="virtlet ovn4nfv"
./aio.sh
|