This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
feat: E2E tests iteration #1 #11
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
# Our desired pipeline using only a Nix shell environment | |
name: Check and build Kardinal | |
permissions: | |
id-token: write | |
contents: read | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
e2e_tests: | |
name: E2E tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
# relax sandbox due impure kontrol-service tests during build | |
with: | |
extra_nix_config: | | |
sandbox = relaxed | |
- name: Magic cache | |
uses: DeterminateSystems/magic-nix-cache-action@v7 | |
- name: Install CLI | |
run: curl get.kardinal.dev -sL | sh | |
- name: Verify kardinal command | |
run: bash -c 'source ~/.bashrc; if kardinal | grep -q "Kardinal CLI"; then exit 0; else exit 1; fi' | |
- name: Build and load kontrol service image | |
run: | | |
docker load < $(nix build ./#kontrol-service-container --no-link --print-out-paths) | |
- name: Start kontrol service and Postgres | |
run: docker compose -f docker-compose.yml up -d | |
- name: Deploy boutique demo manifest | |
run: | | |
kardinal deploy -k obd-demo.yaml > kardinal.out | |
tenant_id=$(grep "Creating new tenant UUID" kardinal.out | cut -d ' ' -f5) | |
echo ${tenant_id} | |
echo "tenant_id=${tenant_id}" >> "$GITHUB_OUTPUT" | |
- name: Test cluster resources endpoint | |
run: | | |
tenant_id=${{ steps.vars.outputs.tenant_id }} | |
deployments=$(curl http://localhost:8080/tenant/${tenant_id}/cluster-resources | jq -r '.deployments[].metadata.name') | |
if [ "${deployments}" != "postgres-prod\nproductcatalogservice-prod\ncartservice-prod\nfrontend-prod" ]; then exit 1; fi | |
- name: Create and delete flow | |
run: | | |
kardinal flow create frontend kurtosistech/frontend:demo-frontend > kardinal.out | |
flow_id=$(grep "Flow.*created" kardinal.out | cut -d ' ' -f2 | tr -d "\"") | |
kardinal flow delete ${flow_id} | |
- name: Create more complex flow | |
run: | | |
kardinal flow create frontend kurtosistech/frontend:demo-on-sale -s productcatalogservice=kurtosistech/productcatalogservice:demo-on-sale > kardinal.out | |
flow_id=$(grep "Flow.*created" kardinal.out | cut -d ' ' -f2 | tr -d "\"") | |
kardinal flow delete ${flow_id} |