Skip to content

Commit 9fb5486

Browse files
authoredMay 14, 2024
add section for disabling profile (Azure#3182)
* add section for disabling profile * fix typo
1 parent 93bb9a8 commit 9fb5486

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed
 

‎cli/deploy-moe-autoscale.sh

+9-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ az monitor autoscale rule create \
5757
--resource $ENDPOINT_RESOURCE_ID
5858
# </scale_up_on_request_latency>
5959

60-
#create weekend profile: scale to 2 nodes in weekend
60+
# create weekend profile: scale to 2 nodes in weekend
6161
# <weekend_profile>
6262
az monitor autoscale profile create \
6363
--name weekend-profile \
@@ -66,10 +66,17 @@ az monitor autoscale profile create \
6666
--recurrence week sat sun --timezone "Pacific Standard Time"
6767
# </weekend_profile>
6868

69+
# disable the autoscale profile
70+
# <disable_profile>
71+
az monitor autoscale update \
72+
--autoscale-name $AUTOSCALE_SETTINGS_NAME \
73+
--enabled false
74+
# </disable_profile>
75+
6976
# <delete_endpoint>
7077
# delete the autoscaling profile
7178
az monitor autoscale delete -n "$AUTOSCALE_SETTINGS_NAME"
7279

7380
# delete the endpoint
7481
az ml online-endpoint delete --name $ENDPOINT_NAME --yes --no-wait
75-
# </delete_endpoint>
82+
# </delete_endpoint>

0 commit comments

Comments
 (0)
Please sign in to comment.