-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git actions: Add kubevirt ipam controller e2e lane
Signed-off-by: Or Shoval <[email protected]>
- Loading branch information
Showing
2 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Kubevirt IPAM controller Tests | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: 'go.mod' | ||
|
||
- name: Run e2e tests | ||
env: | ||
KIND_ALLOW_SYSTEM_WRITES: true | ||
run: automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh |
54 changes: 54 additions & 0 deletions
54
automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xeuE | ||
|
||
# automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh | ||
|
||
GITHUB_ACTIONS=${GITHUB_ACTIONS:-false} | ||
|
||
teardown() { | ||
cd ${TMP_COMPONENT_PATH} | ||
make cluster-down || true | ||
rm -rf "${TMP_COMPONENT_PATH}" | ||
} | ||
|
||
main() { | ||
if [ "$GITHUB_ACTIONS" == "true" ]; then | ||
ARCH="amd64" | ||
OS_TYPE="linux" | ||
kubevirt_version="$(curl -L https://storage.googleapis.com/kubevirt-prow/release/kubevirt/kubevirt/stable.txt)" | ||
kubevirt_release_url="https://github.com/kubevirt/kubevirt/releases/download/${kubevirt_version}" | ||
cli_name="virtctl-${kubevirt_version}-${OS_TYPE}-${ARCH}" | ||
curl -LO "${kubevirt_release_url}/${cli_name}" | ||
mv ${cli_name} virtctl | ||
chmod +x virtctl | ||
mv virtctl /usr/local/bin | ||
fi | ||
|
||
# Setup CNAO and artifacts temp directory | ||
source automation/check-patch.setup.sh | ||
cd ${TMP_PROJECT_PATH} | ||
|
||
export USE_KUBEVIRTCI=false | ||
COMPONENT="kubevirt-ipam-controller" source automation/components-functests.setup.sh | ||
|
||
cd ${TMP_COMPONENT_PATH} | ||
export KIND_ARGS="-ic -i6 -mne" | ||
make cluster-up | ||
export KUBECONFIG=${TMP_COMPONENT_PATH}/.output/kubeconfig | ||
|
||
trap teardown EXIT | ||
|
||
cd ${TMP_PROJECT_PATH} | ||
export KUBEVIRT_PROVIDER=external | ||
export DEV_IMAGE_REGISTRY=localhost:5000 | ||
deploy_cnao | ||
deploy_cnao_cr | ||
./hack/deploy-kubevirt.sh | ||
|
||
cd ${TMP_COMPONENT_PATH} | ||
echo "Run kubevirt-ipam-controller functional tests" | ||
make test-e2e | ||
} | ||
|
||
[[ "${BASH_SOURCE[0]}" == "$0" ]] && main "$@" |