feat: add external certificate support for controller and router and possibility to disable ingress and route generation #562
Workflow file for this run
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: End-to-end tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release-*' | |
| jobs: | |
| e2e-tests: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-24.04-arm | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: jumpstarter-dev/jumpstarter-e2e@main | |
| with: | |
| controller-ref: ${{ github.ref }} | |
| # use the matching branch on the jumpstarter repo | |
| jumpstarter-ref: ${{ github.event.pull_request.base.ref }} | |
| e2e-tests-release-0-7: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: jumpstarter-dev/[email protected] | |
| with: | |
| controller-ref: ${{ github.ref }} | |
| jumpstarter-ref: release-0.7 |