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 3a94867
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build-kind-node.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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
fetch-tags: true
path: kubernetes
- name: Checkout Kubernetes version
run: |
cd $GITHUB_WORKSPACE/kubernetes
git checkout v1.30.0
- name: Build node image
run: |
cd $GITHUB_WORKSPACE/kubernetes
kind build node-image

0 comments on commit 3a94867

Please sign in to comment.