I have some problem. Is it possible to set up vmss (Virtual Machine Scale Set) scaling with specified schedule? If yes, please give me the path to solution guide. Thank you!
Asked
Active
Viewed 323 times
1 Answers
1
Yes, take a look at this article, basically what you need to do is create a Scale Set with some schedule, go into Azure Resource Explorer and modify it to suit your needs:
{
"name": "Weekday_Morning_Hours_Scale",
"capacity": {
"minimum": "4",
"maximum": "12",
"default": "4"
},
"rules": [],
"recurrence": {
"frequency": "Week",
"schedule": {
"timeZone": "Pacific Standard Time",
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"hours": [
6
],
"minutes": [
0
]
}
}
},

4c74356b41
- 69,186
- 6
- 100
- 141
-
Hello! Thank you! But I have some problems to solve. Is it possible to scale my scale set with specified schedule via Runbook? – Mitya Kuznetsov Jan 03 '17 at 13:37
-
yes, but whats the point, you can just create a schedule for that? @MityaKuznetsov – 4c74356b41 Jan 05 '17 at 08:48