We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8125ef4 commit 462c1b3Copy full SHA for 462c1b3
tests/scripts/build-airgap
@@ -156,6 +156,11 @@ if $(grep -iq 'not found' ${RANCHER_IMAGES_FILE}) || [[ ! -s ${RANCHER_IMAGES_FI
156
error "ERROR: file ${RANCHER_IMAGES_FILE} is empty or not found!"
157
fi
158
159
+# Fleet should be present in the file, otherwise no need to go further!
160
+if ! $(grep -iq 'fleet' ${RANCHER_IMAGES_FILE}); then
161
+ error "ERROR: fleet is not found in file ${RANCHER_IMAGES_FILE}!"
162
+fi
163
+
164
# CertManager image list
165
CERT_IMAGES_FILE=cert-manager-images.txt
166
RunHelmCmdWithRetry template ${OPT_RANCHER}/helm/cert-manager-${CERT_MANAGER_VERSION}.tgz \
0 commit comments