-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add multi-t pushk8s versions test (#1314)
- Loading branch information
1 parent
95370e4
commit 47b2aff
Showing
2 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,17 +40,17 @@ inputs: | |
required: true | ||
description: "The directory that contains the docker file, e.g. edc-controlplane/edc-runtime-memory" | ||
|
||
k8sversion: | ||
required: false | ||
description: "Version of Kubernetes to use" | ||
default: "v1.30.0" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/setup-java | ||
|
||
- name: Build docker images | ||
shell: bash | ||
run: |- | ||
./gradlew -p ${{ inputs.rootDir }} dockerize | ||
- name: Setup Helm | ||
uses: azure/[email protected] | ||
with: | ||
|
@@ -62,7 +62,14 @@ runs: | |
version: 'v1.28.2' | ||
|
||
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
uses: helm/[email protected] | ||
with: | ||
node_image: kindest/node:${{ inputs.k8sversion }} | ||
|
||
- name: Build docker images | ||
shell: bash | ||
run: |- | ||
./gradlew -p ${{ inputs.rootDir }} dockerize | ||
- name: Load images into KinD | ||
shell: bash | ||
|
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