From 42014b2f9eba5fe3a737359326f49ff812ff5127 Mon Sep 17 00:00:00 2001 From: sefgsefg Date: Fri, 16 Aug 2024 19:08:22 +0800 Subject: [PATCH] Add files via upload --- .github/actions /kfp-cluster/action.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/actions /kfp-cluster/action.yml diff --git a/.github/actions /kfp-cluster/action.yml b/.github/actions /kfp-cluster/action.yml new file mode 100644 index 0000000..4abf265 --- /dev/null +++ b/.github/actions /kfp-cluster/action.yml @@ -0,0 +1,21 @@ +name: "Set up KFP on KinD" +description: "Step to start and configure KFP on KinD" + +runs: + using: "composite" + steps: + - name: Create k8s Kind Cluster + uses: container-tools/kind-action@v2 + with: + cluster_name: kfp + kubectl_version: v1.29.2 + version: v0.22.0 + node_image: kindest/node:v1.29.2 + + - name: Build images + shell: bash + run: ./scripts/deploy/github/build-images.sh + + - name: Deploy KFP + shell: bash + run: ./scripts/deploy/github/deploy-kfp.sh