Skip to content

Commit

Permalink
Fix test-secondary-network workflow image and script (antrea-io#6171)
Browse files Browse the repository at this point in the history
Fix test-secondary-network workflow image by adding the correct
tag, so that we can use the image we built instead of pulling the one
from the registry.

Signed-off-by: Mengdie Song <[email protected]>
  • Loading branch information
mengdie-song authored Mar 30, 2024
1 parent 8d3f4c3 commit e7df533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,8 @@ jobs:
- name: Load Antrea image
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-agent-ubuntu-coverage:latest antrea/antrea-agent-ubuntu:latest
docker tag antrea/antrea-controller-ubuntu-coverage:latest antrea/antrea-controller-ubuntu:latest
- name: Install Kind
run: |
KIND_VERSION=$(head -n1 ./ci/kind/version)
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-secondary-network/infra/prepare_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function generateAntreaConfig() {
if [ "$1" == "sriov" ]; then
$genManifest --sriov --extra-helm-values "featureGates.SecondaryNetwork=true" > $YAML_ANTREA
elif [ "$1" == "vlan" ]; then
$genManifest --extra-helm-values "featureGates.SecondaryNetwork=true" > $YAML_ANTREAc
$genManifest --extra-helm-values "featureGates.SecondaryNetwork=true" > $YAML_ANTREA
else
echoerr "Incorrect network option $1. Failed to generate antrea.yml"
exit 1
Expand Down

0 comments on commit e7df533

Please sign in to comment.