Skip to content

Commit 2c22125

Browse files
authored
Merge pull request #3169 from CecileRobertMichon/fix-unbound
Fix unbound CIDR1 in ci-entrypoint when testing CCM
2 parents c77c008 + b5dc9ad commit 2c22125

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)