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
OKE_LIMIT=`oci limits value list --compartment-id "$OCI_TENANCY" --service-name "container-engine" --query 'sum(data[?"name"=='"'cluster-count'"'].value)'`
64
+
iftest"$OKE_LIMIT" -lt 1;then
65
+
echo'The service limit for the "Container Engine" "Cluster Count" is insufficent to run this workshop. At least 1 is required.'
66
+
exit
67
+
eliftest"$OKE_LIMIT" -eq 1;then
68
+
echo'You are limited to only one OKE cluster in this tenancy. This workshop will create one additional OKE cluster and so any other OKE clusters must be terminated.'
69
+
read -p "Please confirm that no other un-terminated OKE clusters exist in this tenancy and then hit [RETURN]? " DUMMY
0 commit comments