File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 62
62
# we need to pull these published images and load them into the kind cluster
63
63
# with the tag correct tag.
64
64
- name : Load tagged container images into kind cluster
65
- run : ./kind-images.sh ${{ github.event.pull_request.head.sha }}
65
+ run : ./kind-images.sh ${{ github.event.pull_request.head.sha }} ${{ env.CLUSTER_NAME }}
66
66
working-directory : web-apps
67
67
68
68
- name : Add Helm repos for dependencies
Original file line number Diff line number Diff line change 1
- # set -ex
1
+ set -e
2
2
3
3
source functions.sh
4
4
@@ -8,11 +8,13 @@ if [[ -z $1 ]]; then
8
8
fi
9
9
10
10
REMOTE_TAG=$1
11
+ CLUSTER_NAME=${2:- kind}
12
+ echo Kind cluster name: $CLUSTER_NAME
11
13
KIND_TAG=local
12
14
for image in $( find_images .) ; do
13
15
full_name=ghcr.io/stackhpc/azimuth-llm-$image -ui
14
16
echo $full_name
15
17
docker pull $full_name :$REMOTE_TAG
16
18
docker image tag $full_name :$REMOTE_TAG $full_name :$KIND_TAG
17
- kind load docker-image $full_name :$KIND_TAG
19
+ kind load docker-image -n $CLUSTER_NAME $full_name :$KIND_TAG
18
20
done
You can’t perform that action at this time.
0 commit comments