Integration test for Kubernetes Lease #2015
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: Integration test for Kubernetes Lease | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release-* | |
tags-ignore: [ v.* ] | |
schedule: | |
- cron: '0 2 * * *' # every day 2am | |
permissions: | |
contents: read | |
jobs: | |
integration-test: | |
name: Integration test for Kubernetes Lease | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
fetch-depth: 0 | |
- name: Checkout GitHub merge | |
if: github.event.pull_request | |
run: |- | |
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch | |
git checkout scratch | |
- name: Cache Coursier cache | |
# https://github.com/coursier/cache-action/releases | |
# v6.4.5 | |
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | |
- name: Set up JDK 11 | |
# https://github.com/coursier/setup-action/releases | |
# v1.3.5 | |
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | |
with: | |
jvm: temurin:1.11.0 | |
- name: Cache Coursier cache | |
# https://github.com/coursier/cache-action/releases | |
# v6.4.5 | |
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | |
- name: Setup Minikube | |
# https://github.com/manusa/actions-setup-minikube/releases | |
# v2.7.1 | |
uses: manusa/actions-setup-minikube@4582844dcacbf482729f8d7ef696f515d2141bb9 | |
with: | |
minikube version: 'v1.32.0' | |
kubernetes version: 'v1.28.4' | |
driver: docker | |
start args: '--addons=ingress' | |
- name: Run Integration Tests | |
timeout-minutes: 15 | |
run: |- | |
echo 'Creating namespace' | |
kubectl create namespace lease | |
echo 'Creating resources' | |
kubectl apply -f ./lease-kubernetes/lease.yml | |
echo 'Adding proxy port' | |
kubectl proxy --port=8080 & | |
echo 'Running tests' | |
sbt ";lease-kubernetes-integration/test" | |
./integration-test/lease-kubernetes/minikube-test.sh | |
- name: Print logs on failure | |
if: ${{ failure() }} | |
run: find . -name "*.log" -exec ./scripts/cat-log.sh {} \; |