Allow selection of cilium and calico CNIs in yake-local, use in CI #186
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: "Yake install" | |
on: | |
pull_request: | |
branches: | |
- "main" | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
jobs: | |
install: | |
strategy: | |
fail-fast: false | |
matrix: | |
cni: | |
- calico | |
- cilium | |
version: | |
- v1.26.14 | |
- v1.27.11 | |
- v1.28.7 | |
runs-on: self-hosted | |
timeout-minutes: 60 | |
name: "Yake install testrun" | |
steps: | |
- name: Checkout source | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- name: install | |
env: | |
K8S_VERSION: ${{ matrix.version }} | |
CNI: ${{ matrix.cni }} | |
working-directory: hack/ci/yake-local | |
run: ./work.sh |