Skip to content

Commit

Permalink
[type:feat] update shenyu k8s yml
Browse files Browse the repository at this point in the history
  • Loading branch information
moremind committed Sep 25, 2023
1 parent 3aa3e1d commit 476848f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: ./mvnw -B clean install -Prelease,docker -Dmaven.javadoc.skip=true -B -Drat.skip=true -Dmaven.test.skip=true -Djacoco.skip=true -DskipITs -DskipTests package -T1C

- name: Build Docker Image
run: docker save apache/shenyu-admin:latest apache/shenyu-bootstrap:latest
run: docker save apache/shenyu-admin:latest | gzip > shenyu-admin.tar.gz && docker save apache/shenyu-bootstrap:latest | gzip > shenyu-bootstrap.tar.gz

e2e-storage:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -151,7 +151,9 @@ jobs:
- name: Build k8s Cluster
if: steps.filter.outputs.changed == 'true'
run: |
docker save apache/shenyu-admin:latest apache/shenyu-bootstrap:latest | sudo k3s ctr images import -
sudo k3s ctr images import shenyu-admin.tar.gz
sudo k3s ctr images import shenyu-bootstrap.tar.gz
# docker save apache/shenyu-admin:latest apache/shenyu-bootstrap:latest | sudo k3s ctr images import -

# - name: Setup Debug Session
# uses: mxschmitt/action-tmate@v3
Expand Down

0 comments on commit 476848f

Please sign in to comment.