Skip to content

Commit

Permalink
DNM: Run e2e test default bridge at mutiple nodes in parallel to chec…
Browse files Browse the repository at this point in the history
…k stability

Signed-off-by: Quique Llorente <[email protected]>
  • Loading branch information
qinqon committed Oct 14, 2019
1 parent ab0f4f1 commit 46943ec
Show file tree
Hide file tree
Showing 19 changed files with 23 additions and 5 deletions.
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-1.mounts
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-1.packages
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-1.sh
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-2.mounts
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-2.packages
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-2.sh
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-3.mounts
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-3.packages
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-3.sh
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-4.mounts
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-4.packages
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-4.sh
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-5.mounts
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-5.packages
1 change: 1 addition & 0 deletions automation/check-patch.k8s-1.14.6-5.sh
4 changes: 1 addition & 3 deletions automation/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ teardown() {
make cluster-down
}

export KUBEVIRT_PROVIDER=$TARGET
export KUBEVIRT_PROVIDER=$(echo $TARGET| sed "s/6-.*/6/")

# Make sure that the VM is properly shut down on exit
trap teardown EXIT SIGINT SIGTERM SIGSTOP
Expand All @@ -22,8 +22,6 @@ skip_tests=""

if [[ $SCRIPT_NAME =~ default-bridge ]]; then
focus_tests=".*move.*default.*IP.*"
else
skip_tests=".*move.*default.*IP.*"
fi

if [[ $SCRIPT_NAME =~ node-removal ]]; then
Expand Down
2 changes: 1 addition & 1 deletion hack/install-kubevirtci.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

organization=kubevirt
commit="c183644534f59c24e012940127c2c3a361510848"
commit="9ae4145c8f230a7a4ea32997e9fadc8ca049731a"

script_dir=$(dirname "$(readlink -f "$0")")
kubevirtci_dir=kubevirtci
Expand Down
5 changes: 5 additions & 0 deletions stdci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ sub-stages:
- k8s-1.14.6.default-bridge
- k8s-1.14.6.node-removal
- k8s-1.14.6
- k8s-1.14.6-1
- k8s-1.14.6-2
- k8s-1.14.6-3
- k8s-1.14.6-4
- k8s-1.14.6-5
- os-3.11.0

runtime_requirements:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/default_bridged_network_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var _ = Describe("NodeNetworkConfigurationPolicy default bridged network", func(
resetDesiredStateForNodes()
})

It("should successfully move default IP address on top of the bridge", func() {
FIt("should successfully move default IP address on top of the bridge", func() {
By("Creating the policy")
setDesiredStateWithPolicy("default-network", createBridgeOnTheDefaultInterface)

Expand Down

0 comments on commit 46943ec

Please sign in to comment.