Skip to content

Commit

Permalink
automation, Align sig-operator in automation scripts
Browse files Browse the repository at this point in the history
Align sig-operator as the other sigs in
automation/test.sh script.

This way it can set TARGET as
k8s-1.x-sig-operator.

Signed-off-by: Or Shoval <[email protected]>
  • Loading branch information
oshoval committed Sep 9, 2021
1 parent ca42e2a commit cb52252
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions automation/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ elif [[ $TARGET =~ sig-storage ]]; then
export KUBEVIRT_STORAGE="rook-ceph-default"
elif [[ $TARGET =~ sig-compute ]]; then
export KUBEVIRT_PROVIDER=${TARGET/-sig-compute/}
elif [[ $TARGET =~ sig-operator ]]; then
export KUBEVIRT_PROVIDER=${TARGET/-sig-operator/}
else
export KUBEVIRT_PROVIDER=${TARGET}
fi
Expand Down Expand Up @@ -340,6 +342,8 @@ if [[ -z ${KUBEVIRT_E2E_FOCUS} && -z ${KUBEVIRT_E2E_SKIP} ]]; then
elif [[ $TARGET =~ sig-compute ]]; then
export KUBEVIRT_E2E_FOCUS="\\[sig-compute\\]"
export KUBEVIRT_E2E_SKIP="GPU|MediatedDevices"
elif [[ $TARGET =~ sig-operator ]]; then
export KUBEVIRT_E2E_FOCUS="\\[sig-operator\\]"
elif [[ $TARGET =~ sriov.* ]]; then
export KUBEVIRT_E2E_FOCUS=SRIOV
elif [[ $TARGET =~ gpu.* ]]; then
Expand Down

0 comments on commit cb52252

Please sign in to comment.