Skip to content

Commit

Permalink
add debug ssh action step to dive into the k8s cluster setup on arm
Browse files Browse the repository at this point in the history
Signed-off-by: Misha Sakhnov <[email protected]>
  • Loading branch information
mikhail-sakhnov committed Oct 30, 2024
1 parent 12f4bf0 commit b3692fd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:

strategy:
matrix:
arch: [ amd64, arm64 ]
arch: [ arm64 ]
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', matrix.arch == 'arm64' && 'large-arm64' || 'large')) }}

services:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
daemon: ${{ steps.tags.outputs.daemon }}
strategy:
matrix:
arch: [ 'amd64', 'arm64' ]
arch: [ 'arm64' ]
# TODO: do we need gen3 runners? to clarify with dev exp team
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', matrix.arch == 'arm64' && 'large-arm64' || 'large')) }}
steps:
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
fail-fast: false
matrix:
cluster: [ kind ]
arch: [ amd64, arm64 ]
arch: [ arm64 ]

runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', matrix.arch == 'arm64' && 'large-arm64' || 'large')) }}

Expand Down Expand Up @@ -220,8 +220,16 @@ jobs:
docker image tag "$TEST_IMAGE" "$IMG_E2E_TEST"
make load-example-vms
- run: make e2e
timeout-minutes: 15
# - run: make e2e
# timeout-minutes: 15

- name: Setup upterm session
uses: lhotari/action-upterm@v1
# with:
# ## limits ssh access and adds the ssh public key for the user which triggered the workflow
# limit-access-to-actor: true
# ## limits ssh access and adds the ssh public keys of the listed GitHub users
# limit-access-to-users: mikhail-sakhnov

- name: Get k8s logs and events
if: always()
Expand Down

0 comments on commit b3692fd

Please sign in to comment.