Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cupnes committed Feb 27, 2024
1 parent a5715a3 commit 6c8e3eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
restore-keys: |
go-
- run: make -C e2e setup-minikube-upstream-rook
- run: make -C e2e test-upstream-rook
- run: make -C e2e test-upstream-rook DOCKER_SAVE_PATH=/mnt
6 changes: 4 additions & 2 deletions e2e/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include ../versions.mk

DOCKER_SAVE_PATH ?= .
BINDIR := $(shell pwd)/bin
TMPDIR := $(shell pwd)/tmp
CURL := curl -sSLf
Expand Down Expand Up @@ -205,8 +206,9 @@ common/setup-components:
$(KUBECTL) apply -f https://github.com/cert-manager/cert-manager/releases/download/$(CERT_MANAGER_VERSION)/cert-manager.yaml
$(MAKE) -C .. docker-build
df -h
docker save controller:latest > controller-container.tar
$(SUDO) ctr -n k8s.io images import controller-container.tar
echo $(DOCKER_SAVE_PATH)/controller-container.tar
docker save controller:latest > $(DOCKER_SAVE_PATH)/controller-container.tar
$(SUDO) ctr -n k8s.io images import $(DOCKER_SAVE_PATH)/controller-container.tar
$(MAKE) -C .. install
$(MAKE) -C .. deploy

Expand Down

0 comments on commit 6c8e3eb

Please sign in to comment.