Skip to content
Snippets Groups Projects
Commit 6b761823 authored by Aliaksandr Ramanovich (EPAM)'s avatar Aliaksandr Ramanovich (EPAM) Committed by Marc Burnie [AWS]
Browse files

GC update bootstrap

(cherry picked from commit 14d15cae)
parent ab8266a1
Branches cherry-pick-for-527
No related tags found
1 merge request!529Cherry-pick 'GC update bootstrap' into release/0.27
Pipeline #283566 skipped
......@@ -59,6 +59,14 @@ create_instance_bundles
# Get all partitions
PARTITIONS_LIST=$(curl --location "${PARTITION_BASE_URL}/api/partition/v1/partitions" | jq -r '[.[] | select(. != "system")] | join(",")')
# Check for partition bootstrap
if [ -z "$PARTITIONS_LIST" ]
then
echo "Partition bootstrap is not finished"
exit 1
fi
IFS=',' read -ra PARTITIONS <<< "${PARTITIONS_LIST}"
echo $PARTITIONS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment