Fix kubelet and kubeadm config paths in k/release #3178
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: olm | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
GO_VERSION: '1.21' | |
KIND_IMG_TAG: v1.27.3 | |
permissions: {} | |
jobs: | |
main: | |
name: tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v3.5.2 | |
- name: Download binaries | |
run: | | |
mkdir -p ${GITHUB_WORKSPACE}/build | |
echo "${GITHUB_WORKSPACE}/build" >> ${GITHUB_PATH} | |
make operator-sdk | |
make opm | |
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libseccomp-dev libelf-dev libapparmor-dev | |
sudo hack/install-libbpf.sh | |
- name: Create and verify bundle | |
run: | | |
make verify-bundle | |
- name: Create and set up K8s KinD Cluster | |
run: | | |
./hack/kind-with-registry.sh | |
- name: Run the tests | |
run: ./hack/ci/e2e-olm.sh |