File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ az monitor autoscale rule create \
57
57
--resource $ENDPOINT_RESOURCE_ID
58
58
# </scale_up_on_request_latency>
59
59
60
- # create weekend profile: scale to 2 nodes in weekend
60
+ # create weekend profile: scale to 2 nodes in weekend
61
61
# <weekend_profile>
62
62
az monitor autoscale profile create \
63
63
--name weekend-profile \
@@ -66,10 +66,17 @@ az monitor autoscale profile create \
66
66
--recurrence week sat sun --timezone " Pacific Standard Time"
67
67
# </weekend_profile>
68
68
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
+
69
76
# <delete_endpoint>
70
77
# delete the autoscaling profile
71
78
az monitor autoscale delete -n " $AUTOSCALE_SETTINGS_NAME "
72
79
73
80
# delete the endpoint
74
81
az ml online-endpoint delete --name $ENDPOINT_NAME --yes --no-wait
75
- # </delete_endpoint>
82
+ # </delete_endpoint>
You can’t perform that action at this time.
0 commit comments