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

Load wildfly application images in Minikube #269

Merged
merged 1 commit into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
minikube version: v1.22.0
kubernetes version: v1.20.0
driver: docker
- name: Load WildFly images used for testing
run: |-
minikube image load --pull=true quay.io/wildfly-quickstarts/wildfly-operator-quickstart:18.0
minikube image load --pull=true quay.io/wildfly-quickstarts/wildfly-operator-quickstart:bootable-21.0
minikube image load --pull=true quay.io/wildfly-quickstarts/clusterbench:latest
- name: Containerized End-to-End Tests
run: eval $(minikube -p minikube docker-env) && make test-e2e-minikube
- name: Docker Login to Quay.io (main only)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ run-test-e2e:
$(KUSTOMIZE) build config/rbac | kubectl apply -f -
mkdir -p dry-run
$(KUSTOMIZE) build config/tests > dry-run/test-resources.yaml
LOCAL_MANAGER=0 go test -v ./test/e2e/... -coverprofile cover.out
LOCAL_MANAGER=0 go test -timeout 20m -v ./test/e2e/... -coverprofile cover.out
$(KUSTOMIZE) build config/rbac | kubectl delete --ignore-not-found=true -f -

.PHONY: clean
Expand Down