Skip to content

Bump sigs.k8s.io/controller-runtime from 0.22.1 to 0.22.2 in the k8s-dependencies group #4995

Bump sigs.k8s.io/controller-runtime from 0.22.1 to 0.22.2 in the k8s-dependencies group

Bump sigs.k8s.io/controller-runtime from 0.22.1 to 0.22.2 in the k8s-dependencies group #4995

Workflow file for this run

name: test
on:
push:
branches:
- '**'
pull_request:
paths:
- '**'
- '!doc/**'
merge_group:
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Install podman
run: |
sudo apt-get update
sudo apt-get -y install podman
podman version
- name: Create kind cluster and setup local docker registry
run: |
"${GITHUB_WORKSPACE}/scripts/start_registry.sh" kind-registry
export DOCKER_REGISTRY_HOST=localhost:443
- name: Run e2e tests
run: |
KUBECONFIG="$HOME/.kube/config" DOCKER_REGISTRY_HOST=localhost:443 make build e2e CLUSTER=kind