Update helm/kind-action action to v1.12.0 (#33) #149
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: ./ | |
- name: Print registry | |
run: | | |
echo Kind registry: ${{ steps.kind.outputs.registry }} >> $GITHUB_STEP_SUMMARY | |
- name: Test tools | |
run: | | |
echo jq | |
jq --version | |
echo yq | |
yq --version | |
echo helm | |
helm version | |
echo chainsaw | |
chainsaw version | |
echo kubectl | |
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 |