From 463e4315cebbfd355a3e4b0118aef518b50996c1 Mon Sep 17 00:00:00 2001 From: Johannes Kleinlercher Date: Fri, 3 May 2024 16:21:41 +0200 Subject: [PATCH] create kind cluster --- .github/workflows/cluster-test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/cluster-test.yml diff --git a/.github/workflows/cluster-test.yml b/.github/workflows/cluster-test.yml new file mode 100644 index 00000000..b7ccaa42 --- /dev/null +++ b/.github/workflows/cluster-test.yml @@ -0,0 +1,23 @@ +# This is a basic workflow to help you get started with Actions + +name: test sx-cnp-oss k3d stack on kind cluster + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + create-cluster: + runs-on: ubuntu-latest + steps: + - name: Create k8s Kind Cluster + uses: helm/kind-action@v1 + with: + cluster_name: sx-cnp-oss-cluster