Skip to content

Bump k8s.io/kube-aggregator from 0.22.17 to 0.27.1 #1177

Bump k8s.io/kube-aggregator from 0.22.17 to 0.27.1

Bump k8s.io/kube-aggregator from 0.22.17 to 0.27.1 #1177

Workflow file for this run

name: Kind Cluster E2E tests
on:
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- 'docs/**'
- '*.md'
- 'cli/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.5.0
with:
kubectl_version: v1.25.0
cluster_name: kinder
- uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- uses: actions/setup-go@v4 # default version of go is 1.10
with:
go-version: "1.19.6"
- name: Install Carvel Tools
run: ./hack/install-deps.sh
# Run benchmark with `go test -bench` and stores the output to a file
- name: Install kc and run e2e tests on kind
run: |
set -e -x
kubectl version --short
source ./hack/version-util.sh
ytt -f config/config -f config/values-schema.yml -f config-dev -v dev.version="$(get_kappctrl_ver)+develop" | kbld -f- > kbld.out 2> kbldmeta.out
cat kbldmeta.out | tail -n 1 | sed 's/.*final: kapp-controller -> \(.*\)$/\1/p' | tail -n 1 | xargs kind load docker-image --name kinder
kapp deploy -a kc -f kbld.out -c -y
export KAPPCTRL_E2E_SECRETGEN_CONTROLLER=true
source ./hack/secretgen-controller.sh
deploy_secretgen-controller
mkdir tmp
KAPPCTRL_E2E_NAMESPACE=kappctrl-test eval './hack/test-e2e.sh'