Consolidate the katib-cert-generator to the katib-controller #337
Workflow file for this run
This file contains 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: E2E Test with Katib UI, random search, and postgres | |
on: | |
- pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Test Env | |
uses: ./.github/workflows/template-setup-e2e-test | |
with: | |
kubernetes-version: ${{ matrix.kubernetes-version }} | |
- name: Run e2e test with ${{ matrix.experiments }} experiments | |
uses: ./.github/workflows/template-e2e-test | |
with: | |
experiments: random | |
# Comma Delimited | |
trial-images: mxnet-mnist | |
katib-ui: true | |
database-type: postgres | |
strategy: | |
fail-fast: false | |
matrix: | |
kubernetes-version: ["v1.25.12", "v1.26.6", "v1.27.3"] |