Install kyverno chainsaw #131
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
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
jobs: | ||
default: | ||
runs-on: ubuntu-latest | ||
name: Run with default | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: kind | ||
name: Install Kind with registry | ||
uses: bakito/kind-with-registry-action@${{ github.sha }} | ||
Check failure on line 15 in .github/workflows/main.yml GitHub Actions / .github/workflows/main.ymlInvalid workflow file
|
||
- name: Print registry | ||
run: | | ||
echo Kind registry: ${{ steps.kind.outputs.registry }} >> $GITHUB_STEP_SUMMARY | ||
- name: Test tools | ||
run: | | ||
jq --version | ||
yq --version | ||
helm version | ||
chainsaw version | ||
kubectl version | ||
kubectl get nodes | ||
parametrized: | ||
runs-on: ubuntu-latest | ||
name: Run parameterized | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: kind | ||
name: Install Kind with registry | ||
uses: bakito/kind-with-registry-action@main | ||
with: | ||
ingress_enabled: true | ||
ingress_version: helm-chart-4.11.2 | ||
kind_version: v0.23.0 | ||
kubectl_version: v1.30.0 | ||
- name: Print ingress class | ||
run: | | ||
echo Ingress class name: ${{ steps.kind.outputs.ingress_class_name }} >> $GITHUB_STEP_SUMMARY |