Update kubernetes monorepo to v0.36.3 (main) #5404
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Global Hub Without ACM | |
| on: | |
| workflow_dispatch: {} | |
| pull_request: | |
| branches: | |
| - main | |
| env: | |
| GO_VERSION: '1.26' | |
| GO_REQUIRED_MIN_VERSION: '' | |
| permissions: | |
| contents: read | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check initial disk usage | |
| run: df -h / | |
| - name: Free disk space (optional cleanup) | |
| run: | | |
| sudo rm -rf /usr/local/lib/android | |
| sudo rm -rf /opt/hostedtoolcache | |
| docker system prune -af | |
| df -h / | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Go | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache: false | |
| - name: Setup test tools | |
| run: go install tool | |
| - name: SET E2E | |
| run: | | |
| make kessel-e2e-setup | |
| - name: RUN E2E | |
| run: | | |
| make kessel-e2e-run | |