Update gardener-controlplane to v1.91.0 (main) #207
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 }} | |
REGISTRY_OVERWRITE: ${{ vars.REGISTRY_OVERWRITE }} # set as a repository variable so it will not be used in forks | |
working-directory: hack/ci/yake-local | |
run: ./work.sh |