Support running services without TLS + test harness #107
Workflow file for this run
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: ci | |
on: | |
# Run on all PRs | |
pull_request: | |
env: | |
HELM_VERSION: v3.14.4 | |
PYTHON_VERSION: 3.13 | |
UV_VERSION: 0.5.3 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Read Configuration | |
uses: hashicorp/vault-action@v3 | |
id: vault | |
with: | |
url: https://vault.eng.aserto.com/ | |
token: ${{ secrets.VAULT_TOKEN }} | |
secrets: | | |
kv/data/github "READ_WRITE_TOKEN" | READ_WRITE_TOKEN; | |
- | |
uses: actions/checkout@v4 | |
with: | |
# Fetch the full history so that we can diff against the target branch | |
fetch-depth: 0 | |
- | |
name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: ${{ env.HELM_VERSION }} | |
- | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
check-latest: true | |
- | |
name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.6.0 | |
with: | |
version: v3.10.0 | |
# - | |
# name: Lint | |
# run: | | |
# ct lint --config ct.yaml --helm-repo-extra-args "aserto-helm=-u gh -p ${READ_WRITE_TOKEN}" | |
- | |
name: Install uv package manager | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- | |
uses: AbsaOSS/k3d-action@v2 | |
name: Create k8s cluster | |
with: | |
cluster-name: "test" | |
args: --agents 1 | |
- | |
name: Generate admin ssh key | |
id: sshkey | |
run: | | |
ssh-keygen -t ed25519 -N "" -f $HOME/.ssh/admin_ed25519 | |
echo "public_key=$HOME/.ssh/admin_ed25519.pub" >> $GITHUB_OUTPUT | |
echo "private_key=$HOME/.ssh/admin_ed25519" >> $GITHUB_OUTPUT | |
- | |
name: Test Directory | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SSH_PUBLIC_KEY: ${{ steps.sshkey.outputs.public_key }} | |
SSH_PRIVATE_KEY: ${{ steps.sshkey.outputs.private_key }} | |
run: | | |
echo "Public key: $SSH_PUBLIC_KEY" | |
cd tools/ktest | |
uv run ktest.py ../../test/directory/tests.yaml |