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
ci: refactor bootstrapping to avoid needing to invoke apt get (Azure#2336)
* refactor: Stop invoking jq in infra scripts
* refactor: Remove some commented out code from infra
* refactor: Don't install jq
Ubuntu runners come with it pre-installed:
https://github.com/actions/runner-images/blob/4fe7f6bc86111e8ae1721eeecaa8df3e9a3c2dbd/images/linux/Ubuntu2204-Readme.md
* refactor: Replace `az command | jq '.QUERY'` with `az command --query QUERY`
* refactor: Collapse `jq | jq | jq` into a single jq invocation
* refactor: Do not install xmlstarlet
Seem to be entirely unused
* refactor: Don't install uuid-runtime and remove install_packages function
[[ $(az ml compute show --resource-group "${RESOURCE_GROUP_NAME}" --name "${COMPUTE_NAME}"| jq -r .provisioning_state)=="Succeeded" ]]
493
+
[[ $(az ml compute show --resource-group "${RESOURCE_GROUP_NAME}" --name "${COMPUTE_NAME}"--query provisioning_state --output tsv)=="Succeeded" ]]
531
494
then
532
495
echo_info "Cluster is already attached to workspace for the cluster: ${CLUSTER_NAME} as ${COMPUTE_NAME} in workspace:${WORKSPACE_NAME} under namespace: ${COMPUTE_NS}..."
# az vmss show -g "${LOCAL_RESOURCE_GROUP_NAME}" -n "${VMSS}" -o json
759
-
if [[ $(echo $VMSS_PROPERTIES| jq -r '.upgradePolicy.mode')=="Automatic" ]];then
720
+
if [[ "$VMSS_UPGRADE_POLICY_MODE"=="Automatic" ]];then
760
721
echo_info "Skipping to update upgradePolicy for VMSS $VMSS in resource-group ${LOCAL_RESOURCE_GROUP_NAME}..."
761
722
continue
762
723
else
@@ -778,7 +739,7 @@ function vmss_upgrade_policy_all_rg() {
778
739
# checking Resource group name to ensure we're in a managed cluster RG
779
740
echo"Number of Resource groups starting with ${RG_PREFIX}:"$(az group list --subscription "${SUBSCRIPTION_ID}" --query "[? starts_with(@.name, '${RG_PREFIX}')] | length(@)")
780
741
# az group list --query "[? starts_with(@.name, '${RG_PREFIX}')].name" -o tsv | xargs -i "$SCRIPT_DIR"/sdk_helpers.sh check_vmss "{}"
781
-
forLOCAL_RESOURCE_GROUP_NAMEin$(az group list --subscription "${SUBSCRIPTION_ID}" --query "[? starts_with(@.name, '${RG_PREFIX}')].name" --output json | jq .[] -r);do
742
+
forLOCAL_RESOURCE_GROUP_NAMEin$(az group list --subscription "${SUBSCRIPTION_ID}" --query "[? starts_with(@.name, '${RG_PREFIX}')].name" --output tsv);do
782
743
# resource_id=$(az resource list --resource-group "${LOCAL_RESOURCE_GROUP_NAME}" --query [].id --output tsv)
783
744
RESOURCE_GROUP_ID=$(az group show --subscription "${SUBSCRIPTION_ID}" --name "${LOCAL_RESOURCE_GROUP_NAME}" --query id -o tsv | tail -n1 | tr -d "[:cntrl:]")
784
745
echo"Current tags for resource-group ${LOCAL_RESOURCE_GROUP_NAME}"
0 commit comments