Use InPlacePodVerticalScaling feature gate instead of tweaking cgroups #53
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: KinD e2e tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
e2e-tests: | |
name: e2e tests | |
strategy: | |
fail-fast: false | |
matrix: | |
k8s-version: | |
- v1.27.x | |
os: | |
- ubuntu-20.04 # Ubuntu 20.04 uses cgroup v1 | |
- ubuntu-22.04 # Ubuntu 22.04 uses cgroup v2 | |
runs-on: ${{ matrix.os }} | |
env: | |
KO_DOCKER_REPO: kind.local | |
steps: | |
- name: Set up Go 1.21.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.x | |
- uses: ko-build/setup-ko@v0.6 | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup KinD | |
uses: chainguard-dev/actions/setup-kind@main | |
with: | |
k8s-version: ${{ matrix.k8s-version }} | |
kind-worker-count: 1 | |
- name: Install k8s-pod-cpu-booster | |
run: | | |
K8S_DISTRIBUTION="kind" | |
CGROUP_VERSION="v2" | |
if [ "${{ matrix.os }}" == "ubuntu-20.04" ] | |
then | |
CGROUP_VERSION="v1" | |
fi | |
ko resolve -f config/ | \ | |
CGROUP_VERSION="$CGROUP_VERSION" K8S_DISTRIBUTION="$K8S_DISTRIBUTION" envsubst | \ | |
kubectl apply -f - | |
- name: Wait for Ready | |
run: | | |
echo "Waiting for Pods to become ready" | |
kubectl wait pod --for=condition=Ready -n pod-cpu-booster -l name=pod-cpu-booster | |
sleep 5 # because readiness probe is not accurate (Ready != informer is started), but sleeping is enough for now | |
- name: Run e2e Tests | |
run: | | |
OS=${{ matrix.os }} ./test/e2e-kind.sh |