Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(test): add volume mount for docker-func-test target #3160

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,12 @@ docker-init: ## Build VPC CNI plugin Init container image.

# Run the built CNI container image to use in functional testing
docker-func-test: docker ## Run the built CNI container image to use in functional testing
rm -rf /tmp/cni/bin
mkdir -p /tmp/cni/bin
docker run $(DOCKER_RUN_FLAGS) \
-v /tmp/cni/bin:/host/opt/cni/bin \
"$(IMAGE_NAME)"
rm -rf /tmp/cni/bin

## Build multi-arch VPC CNI plugin container image.
multi-arch-cni-build:
Expand Down
Loading