Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Satoru Takeuchi <satoru.takeuchi@gmail.com>
  • Loading branch information
satoru-takeuchi committed Feb 28, 2024
1 parent 55959ee commit b2a5441
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- run: sudo apt purge -y $(dpkg-query -W | grep nginx | awk '{print $1}')
- run: sudo apt purge -y aria2 ansible azure-cli shellcheck rpm xorriso zsync esl-erlang firefox gfortran-8 gfortran-9 google-chrome-stable google-cloud-sdk
- run: sudo apt purge -y imagemagick libmagickcore-dev libmagickwand-dev libmagic-dev ant ant-optional kubectl mercurial apt-transport-https
- run: sudo apt purge -y mono-complete unixodbc-dev yarn chrpath libxft-dev libfreetype6-dev libfontconfig1 libfontconfig1-dev
- run: sudo apt purge -y mono-complete unixodbc-dev yarn chrpath libxft-dev libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev
- run: sudo apt purge -y snmp pollinate libpq-dev postgresql-client powershell ruby-full sphinxsearch subversion mongodb-org azure-cli microsoft-edge-stable
- run: sudo apt purge -y $(dpkg-query -W | grep dotnet | awk '{print $1}')
- run: sudo apt autoremove -y >/dev/null 2>&1
Expand All @@ -50,4 +50,4 @@ jobs:
- run: df -h; lsblk
- run: make -C e2e setup-minikube-upstream-rook
- run: df -h; lsblk
- run: make -C e2e test-upstream-rook
- run: make -C e2e test-upstream-rook DOCKER_SAVE_PATH=/mnt
4 changes: 3 additions & 1 deletion e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,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
minikube image load controller:latest
# We can't use `minikube image load` due to a minikube's problem.
# ref. https://github.com/kubernetes/minikube/issues/17785
docker save controller:latest | $(SUDO) ctr -n k8s.io images import -

$(MAKE) -C .. install
$(MAKE) -C .. deploy
Expand Down

0 comments on commit b2a5441

Please sign in to comment.