Skip to content

Commit b5dc9ad

Browse files
Fix unbound CIDR1 in ci-entrypoint when testing CCM
1 parent 9b5fa22 commit b5dc9ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ install_cloud_provider_azure() {
194194
fi
195195

196196
CCM_CLUSTER_CIDR="${CIDR0}"
197-
if [[ -n "${CIDR1}" ]]; then
197+
if [[ -n "${CIDR1:-}" ]]; then
198198
CCM_CLUSTER_CIDR="${CIDR0}\,${CIDR1}"
199199
fi
200200
echo "CCM cluster CIDR: ${CCM_CLUSTER_CIDR:-}"

0 commit comments

Comments
 (0)