You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ "$total_length"-ge"$MAX_CALCULATED_LENGTH" ];then
48
+
echo" -> FAILED: Length of clustergroup '$group_name' and pattern '$global_pattern' will exceed DNS limits in clustergroup chart. Please shorten one or both."
49
+
echo""
50
+
validation_failed=true
51
+
else
52
+
echo" -> PASSED: Length of clustergroup '$group_name' and pattern '$global_pattern' are within clustergroup chart limits."
53
+
echo""
54
+
fi
55
+
fi
56
+
done
57
+
58
+
if$validation_failed;then
59
+
echo"One or more cluster group names failed the length validation."
60
+
print_explanation
61
+
exit 1
62
+
else
63
+
echo"All names are within clustergroup chart limits."
0 commit comments