Skip to content

RIIR, add deeper tests, drop kustomization #9

RIIR, add deeper tests, drop kustomization

RIIR, add deeper tests, drop kustomization #9

Workflow file for this run

name: "CI"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: cargo fetch
run: cargo fetch --verbose
- name: cargo check
run: cargo check --all-features --all-targets
if: always()
- name: cargo fmt
uses: actions-rust-lang/rustfmt@v1
if: always()
- id: clippy
run: cargo clippy --all-features --all-targets
if: always()
test:
runs-on: ubuntu-latest
strategy:
matrix:
kind_image:
- "v1.30.0"
- "v1.29.4"
- "v1.28.9"
- "v1.27.13"
env:
KIND_IMAGE: kindest/node:${{matrix.kind_image}}
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Setup kind
run: |
kind create cluster --image="$KIND_IMAGE" --name test-pgd
- run: cargo fetch --verbose
- run: cargo test --all-features
lint-helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install helm kubeval
run: helm plugin install https://github.com/instrumenta/helm-kubeval
- run: helm lint charts/pod-graceful-drain --strict
- run: helm kubeval charts/pod-graceful-drain
build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build --tag "pod-graceful-drain:latest" .
- run: docker image save --output pod-graceful-drain.tar pod-graceful-drain
- uses: actions/upload-artifact@v4
with:
name: pod-graceful-drain.tar
path: ./pod-graceful-drain.tar
smoke-test:
runs-on: ubuntu-latest
needs:
- build-image
steps:
- uses: actions/checkout@v4
- uses: helm/[email protected]
with:
cluster_name: kind
- uses: actions/download-artifact@v4
with:
name: pod-graceful-drain.tar
- run: |
docker image load --input pod-graceful-drain.tar
kind load docker-image pod-graceful-drain:latest
- run: |
helm install pod-graceful-drain charts/pod-graceful-drain \
--create-namespace --namespace pod-graceful-drain \
--set image.repository=pod-graceful-drain --set image.tag=latest \
--set experimentalGeneralIngress=true \
--set logLevel=debug,pod_graceful_drain=trace \
--wait=true --timeout=1m
- name: Dump
if: always()
run: |
KUBECTL="kubectl --namespace pod-graceful-drain"
echo "::group::kubectl get"
${KUBECTL} get --ignore-not-found=true --output wide all
echo "::endgroup::"
echo "::group::kubectl describe"
${KUBECTL} describe all
echo "::endgroup::"
for POD in $(${KUBECTL} get pod -o=name); do
echo "::group::kubectl logs ${POD}"
${KUBECTL} logs --ignore-errors=true "${POD}"
echo "::endgroup::"
done