merge queue: embarking main (a74feed) and #657 together #1109
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: Test deploying controller | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
branches: | |
- "*" | |
env: | |
TAG: test | |
jobs: | |
kind_deploy: | |
name: kind_deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
- name: Build container container image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile | |
push: false | |
tags: quay.io/csiaddons/k8s-controller:${{ env.TAG }} | |
- name: push image to kind cluster | |
run: > | |
kind | |
load docker-image quay.io/csiaddons/k8s-controller:${{ env.TAG }} | |
--name=chart-testing | |
- name: Deploy the controller and CRDs | |
run: make deploy TAG=${{ env.TAG }} | |
- name: Wait for running controller pod | |
run: > | |
kubectl | |
-n csi-addons-system | |
wait pods | |
-l app.kubernetes.io/name=csi-addons | |
--for=condition=Ready=True | |
- name: Log the status of the failed controller pod | |
if: ${{ failure() }} | |
run: > | |
kubectl | |
-n csi-addons-system | |
describe pods | |
-l app.kubernetes.io/name=csi-addons | |
; false |