feat: enable configurable namespaces, expose more options in helm chart, add stable tag, fix v2 API routing #86
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: Kind CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
e2eBlobs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prerequisites | |
run: sudo make tests-deps-install | |
- name: "End to End: Blobs" | |
run: make ci-kind-random | |
- name: "Clean up" | |
run: make kind-delete | |
e2eCtr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prerequisites | |
run: sudo make tests-deps-install | |
- name: "End to End: Ctr" | |
run: make ci-kind-ctr | |
- name: "Clean up" | |
run: make kind-delete |