Make libvirt-CoreOS cluster able to run e2e tests

This commit is contained in:
Lénaïc Huard
2015-03-02 17:13:57 +01:00
parent c763fbf98a
commit d64f0f1183
3 changed files with 33 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
# A library of helper functions that each provider hosting Kubernetes must implement to use cluster/kube-*.sh scripts.
readonly KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
readonly ROOT=$(dirname "${BASH_SOURCE}")
source $ROOT/${KUBE_CONFIG_FILE:-"config-default.sh"}
@@ -277,7 +277,7 @@ function test-setup {
# Execute after running tests to perform any required clean-up
function test-teardown {
echo "TODO"
kube-down
}
# Set the {KUBE_USER} and {KUBE_PASSWORD} environment values required to interact with provider
@@ -294,6 +294,11 @@ function teardown-monitoring-firewall {
echo "TODO" 1>&2
}
# Perform preparations required to run e2e tests
function prepare-e2e() {
echo "libvirt-coreos doesn't need special preparations for e2e tests" 1>&2
}
function setup-logging-firewall {
echo "TODO: setup logging"
}