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 6262 # we need to pull these published images and load them into the kind cluster
6363 # with the tag correct tag.
6464 - 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 }}
6666 working-directory : web-apps
6767
6868 - name : Add Helm repos for dependencies
Original file line number Diff line number Diff line change 1- # set -ex
1+ set -e
22
33source functions.sh
44
@@ -8,11 +8,13 @@ if [[ -z $1 ]]; then
88fi
99
1010REMOTE_TAG=$1
11+ CLUSTER_NAME=${2:- kind}
12+ echo Kind cluster name: $CLUSTER_NAME
1113KIND_TAG=local
1214for image in $( find_images .) ; do
1315 full_name=ghcr.io/stackhpc/azimuth-llm-$image -ui
1416 echo $full_name
1517 docker pull $full_name :$REMOTE_TAG
1618 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
1820done
You can’t perform that action at this time.
0 commit comments