Skip to content

Hackathon: Platform Cluster provisioning #354

Hackathon: Platform Cluster provisioning

Hackathon: Platform Cluster provisioning #354

---
name: Integration Test
# yamllint disable-line rule:truthy
on:
push:
branches: ["main"]
paths:
- 'charts/**'
- '!charts/k8s-monitoring-v1/**'
pull_request:
paths:
- 'charts/**'
- '!charts/k8s-monitoring-v1/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
list-tests:
name: List tests
runs-on: ubuntu-latest
outputs:
tests: ${{ steps.list_tests.outputs.tests }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: List tests
id: list_tests
run: |
tests=$(ls charts/k8s-monitoring/tests/integration)
echo "Tests: ${tests}"
echo "tests=$(echo "${tests}" | jq --raw-input --slurp --compact-output 'split("\n") | map(select(. != ""))')" >> "${GITHUB_OUTPUT}"
run-tests:
name: Integration Test
needs: list-tests
runs-on: ubuntu-latest
strategy:
matrix:
test: ${{ fromJson(needs.list-tests.outputs.tests) }}
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
- name: Check for cluster config
id: check-cluster-config
run: |
valuesFile="charts/k8s-monitoring/tests/integration/${{ matrix.test }}/values.yaml"
echo "cluster-name=$(yq -r ".cluster.name" "${valuesFile}")" >> "${GITHUB_OUTPUT}"
if [ -f "charts/k8s-monitoring/tests/integration/${{ matrix.test }}/kind-cluster-config.yaml" ]; then
echo "cluster-type=kind-with-config" >> "${GITHUB_OUTPUT}"
echo "cluster-config=charts/k8s-monitoring/tests/integration/${{ matrix.test }}/kind-cluster-config.yaml" >> "${GITHUB_OUTPUT}"
else
echo "cluster-type=kind" >> "${GITHUB_OUTPUT}"
fi
- name: Create kind cluster
if: ${{ steps.check-cluster-config.outputs.cluster-type == 'kind' }}
uses: helm/kind-action@v1
with:
cluster_name: ${{ steps.check-cluster-config.outputs.cluster-name }}
ignore_failed_clean: true
- name: Create kind cluster with special config
if: ${{ steps.check-cluster-config.outputs.cluster-type == 'kind-with-config' }}
uses: helm/kind-action@v1
with:
cluster_name: ${{ steps.check-cluster-config.outputs.cluster-name }}
config: ${{ steps.check-cluster-config.outputs.cluster-config }}
ignore_failed_clean: true
- name: Setup Flux CLI
uses: fluxcd/flux2/action@main
- name: Run test
run: ./scripts/run-integration-test.sh "charts/k8s-monitoring/tests/integration/${{ matrix.test }}"