Skip to content

Commit 4e13fbf

Browse files
authored
Add more images to preloading script (#325)
1 parent 855288a commit 4e13fbf

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

scripts/preload-images.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,18 @@ kind load docker-image $HTTPD_IMAGE
1717
# Preload hazelcast-platform-operator
1818
docker pull "$COMMUNITY_OPERATOR_IMAGEREPO"/"$COMMUNITY_OPERATOR_BASE":"$COMMUNITY_OPERATOR_IMAGEVERSION"
1919
kind load docker-image "$COMMUNITY_OPERATOR_IMAGEREPO"/"$COMMUNITY_OPERATOR_BASE":"$COMMUNITY_OPERATOR_IMAGEVERSION"
20+
21+
# Preload test-partner image since we use that for testing
22+
PARTNER_IMAGE=quay.io/testnetworkfunction/cnf-test-partner:latest
23+
docker pull $PARTNER_IMAGE
24+
kind load docker-image $PARTNER_IMAGE
25+
26+
# Preload debug-partner image for the daemonset
27+
DEBUG_PARTNER_IMAGE=quay.io/testnetworkfunction/debug-partner:latest
28+
docker pull $DEBUG_PARTNER_IMAGE
29+
kind load docker-image $DEBUG_PARTNER_IMAGE
30+
31+
# Preload crd-operator-scaling image
32+
CRD_SCALING_IMAGE=quay.io/testnetworkfunction/crd-operator-scaling:${CRD_SCALING_TAG}
33+
docker pull "$CRD_SCALING_IMAGE"
34+
kind load docker-image "$CRD_SCALING_IMAGE"

0 commit comments

Comments
 (0)