Skip to content

Commit

Permalink
Build KinD node image in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Prodan <[email protected]>
  • Loading branch information
stefanprodan committed Apr 21, 2024
1 parent b368bb1 commit 46f7fc6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-kind-node.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: build-kind-node

on:
workflow_dispatch:
push:
branches:
- 'build*'

permissions:
contents: read

jobs:
k8s-amd64:
runs-on:
group: "Default Larger Runners"
labels: ubuntu-latest-16-cores
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
- name: Checkout
uses: actions/checkout@v4
with:
repository: kubernetes/kubernetes
ref: v1.30.0
path: kubernetes
# - name: Checkout Kubernetes version
# run: |
# cd $GITHUB_WORKSPACE/kubernetes
# git fetch --prune --unshallow
# git checkout tags/v1.30.0
- name: Build node image
run: |
cd $GITHUB_WORKSPACE/kubernetes
kind build node-image

0 comments on commit 46f7fc6

Please sign in to comment.