...
The list of tag keys that are used to set up instance start/stop:
Key | Description | ||||
---|---|---|---|---|---|
tz (required) | Timezone to be used by scheduler. Use Area/Location style from IANA Time Zone Database:
| ||||
default (required) | Default instance work hours. Can be either numeric or range with a hyphen separated by the slashes | ||||
mon, tue, wed, thu, fri, sat, sun (optional) | Instance work hours for current day. Format is the same as key Example 1. Work hours:
Instance will be running from 9:00 to 16:59 all days except Saturday and Sunday. Example 2. Work hours:
Instance will be running only on Wednesday from 9:00 to 9:59 and from 14:00 to 17:59. | ||||
policy (optional) | Scheduler mode. Can be |
Learn more about tagging resources in Cloudaware here.
Tag Examples
Code Block |
---|
tz=America/New_York default=9-17 sat=9-11/15-17 sun=off tz=America/New_York |
Description:
...
New York (EST);
instance work hours |
|
schedule timezone |
|
Use the 'default=off' to specify work hours for an instance. The instance will be off all time, except for specific time periods, for example:
Code Block |
---|
default=off wed=0-5 tz=America/New_York |
Description:
instance work hours |
|
schedule timezone |
|
This configuration below can be used for instances to operate from 8 AM to 6 PM on weekdays, remain off during non-working hours, and also off on weekends:
Code Block |
---|
mon=8-18 tue=8-18 wed=8-18 thu=8-18 fri=8-18 sat=off sun=off default=off |
...
tz=America/New_York |
Description:
instance work hours |
|
schedule timezone |
|
You can implement a sophisticated scheduling pattern when configuring instances with operational requirements that cross midnight. For example, to have an instance
...
operate from Monday through Friday, running from midnight to 2 AM and again from 10 PM to midnight, use the following schedule configuration:
Code Block |
---|
mon=0-2/22-24 tue=0-2/22-24 wed=0-2/22-24 thu=0-2/22-24 fri=0-2/22-24 sat=off sun=off default=off tz=America/New_York |
Description:
instance work hours |
|
schedule timezone |
|
This approach allows for precise control over resource utilization and cost management.