-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(e2e): check node image exists in registry
node release might be on the way and e2e test will fail as container is being built. to resolve the issue we check if image exists remotely, and if not build it locally Signed-off-by: Artur Troian <[email protected]>
- Loading branch information
Showing
4 changed files
with
19 additions
and
8 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 |
---|---|---|
|
@@ -6,6 +6,10 @@ on: | |
env: | ||
KUBE_SSH_NODE_NAME: kind | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
crd-e2e: | ||
env: | ||
|
@@ -25,6 +29,10 @@ jobs: | |
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Go mod tidy | ||
run: go mod tidy | ||
- name: Make node scripts executable | ||
run: make chmod-node-scripts | ||
- name: Prepare images | ||
run: make -s -C _run/kube kube-prepare-images | ||
- uses: engineerd/[email protected] | ||
|
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
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
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