全部產品
Search
文件中心

CloudOps Orchestration Service:ACS-ECS-ScheduleToStartAndStopOrStopAndStartInstances

更新時間:Sep 06, 2024

模板名稱

ACS-ECS-ScheduleToStartAndStopOrStopAndStartInstances 定時開關機或者關開機

立即執行

模板描述

定時開關機或者關開機

模板類型

自動化

所有者

Alibaba Cloud

輸入參數

參數名稱

描述

類型

是否必填

預設值

約束

targets

目標執行個體

Json

dailyStartTime

每天開啟執行個體的時間

String

dailyStopTime

每天停止執行個體的時間

String

regionId

地區ID

String

{{ ACS::RegionId }}

startFirstOrStopFirst

開關機模式

String

StartFirst

weekdays

任務執行的周期

String

*

triggerEndDate

時間觸發器結束時間

String

2099-12-01T00:00:00Z

stoppedMode

停止模式

String

KeepCharging

hibernate

執行個體是否休眠

Boolean

False

rateControl

任務執行的並發比率

Json

{‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10}

OOSAssumeRole

OOS扮演的RAM角色

String

AliyunServiceRoleForOOSInstanceScheduler

輸出參數

執行此模板需要的權限原則

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "ecs:DescribeInstances",
                "ecs:StartInstance",
                "ecs:StopInstance"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

詳情

ACS-ECS-ScheduleToStartAndStopOrStopAndStartInstances詳情

模板內容

FormatVersion: OOS-2019-06-01
Description:
  en: Schedule to start and stop ECS instances
  zh-cn: 定時開關機或者關開機
  name-en: ACS-ECS-ScheduleToStartAndStopOrStopAndStartInstances
  name-zh-cn: 定時開關機或者關開機
  categories:
    - time_trigger
Parameters:
  regionId:
    Type: String
    Label:
      en: RegionId
      zh-cn: 地區ID
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  targets:
    Type: Json
    Label:
      en: TargetInstance
      zh-cn: 目標執行個體
    AssociationProperty: Targets
    AssociationPropertyMetadata:
      ResourceType: ALIYUN::ECS::Instance
      RegionId: regionId
  startFirstOrStopFirst:
    Type: String
    Label:
      en: StartFirstOrStopFirst
      zh-cn: 開關機模式
    AllowedValues:
      - StartFirst
      - StopFirst
    Default: StartFirst
    AssociationPropertyMetadata:
      LocaleKey: OOSStopInstanceMode
  weekdays:
    Label:
      en: The Cycle of task
      zh-cn: 任務執行的周期
    Type: String
    AssociationProperty: TimeTriggerWeekly
    Default: '*'
  dailyStartTime:
    Label:
      en: DailyStartTime
      zh-cn: 每天開啟執行個體的時間
    Type: String
    AssociationProperty: DateTime
    AssociationPropertyMetadata:
      Format: HH:mm:ssZ
  dailyStopTime:
    Label:
      en: DailyStopTime
      zh-cn: 每天停止執行個體的時間
    Type: String
    AssociationProperty: DateTime
    AssociationPropertyMetadata:
      Format: HH:mm:ssZ
  triggerEndDate:
    Label:
      en: The end date of time trigger
      zh-cn: 時間觸發器結束時間
    Type: String
    AssociationProperty: DateTime
    AssociationPropertyMetadata:
      Format: YYYY-MM-DDTHH:mm:ssZ
    Default: '2099-12-01T00:00:00Z'
  stoppedMode:
    Label:
      en: StoppedMode
      zh-cn: 停止模式
    Description:
      en: <p class="p">The stop mode that is set when stopping a pay-as-you-go ECS instance. Value:</p> <ul class="ul"> <li class="li"Save downtime mode. For the conditions for <code class="ph codeph">StopCharging</code> to take effect, please refer to <span><a target="_blank" href="https://help.aliyun.com/document_detail/63353.html" >Enable Conditions for Pay-As-You-Go Instance Savings Downtime Mode</a></span>. </li> <li class="li">Normal shutdown mode. Charges continue even after the instance is stopped. </li> </ul>
      zh-cn: <p class="p">停止隨用隨付ECS執行個體時,設定的停止模式。取值:</p> <ul class="ul"> <li class="li">節省停機模式:有關<code class="ph codeph">StopCharging</code>生效的條件,請參見<span><a target="_blank" href="https://help.aliyun.com/document_detail/63353.html">隨用隨付執行個體節省停機模式</a></span>的啟用條件章節。</li> <li class="li">普通停機模式:執行個體停止後仍繼續收費。</li> </ul>
    Type: String
    AllowedValues:
      - StopCharging
      - KeepCharging
    Default: KeepCharging
    AssociationPropertyMetadata:
      LocaleKey: ECSStoppedMode
  hibernate:
    Label:
      en: WhetherToHibernateTheInstance
      zh-cn: 執行個體是否休眠
    Type: Boolean
    Default: false
  rateControl:
    Label:
      en: RateControl
      zh-cn: 任務執行的並發比率
    Type: Json
    AssociationProperty: RateControl
    Default:
      Mode: Concurrency
      MaxErrors: 0
      Concurrency: 10
  OOSAssumeRole:
    Label:
      en: OOSAssumeRole
      zh-cn: OOS扮演的RAM角色
    Type: String
    Default: AliyunServiceRoleForOOSInstanceScheduler
RamRole: '{{ OOSAssumeRole }}'
Tasks:
  - Name: timerTrigger
    Action: ACS::TimerTrigger
    Description:
      en: Triggers a task as scheduled by specifying Cron expression
      zh-cn: 通過指定Cron運算式按計劃觸發任務
    Properties:
      Type: cron
      EndDate: '{{ triggerEndDate }}'
      Expression:
        Fn::Join:
          - ' '
          - - '0'
            - Fn::Select:
                - 1
                - Fn::Split:
                    - ':'
                    - Fn::If:
                        - Fn::Equals:
                            - StartFirst
                            - '{{startFirstOrStopFirst}}'
                        - '{{ dailyStartTime }}'
                        - '{{ dailyStopTime }}'
            - Fn::Select:
                - 0
                - Fn::Split:
                    - ':'
                    - Fn::If:
                        - Fn::Equals:
                            - StartFirst
                            - '{{startFirstOrStopFirst}}'
                        - '{{ dailyStartTime }}'
                        - '{{ dailyStopTime }}'
            - '?'
            - '*'
            - '{{ weekdays }}'
  - Name: getInstance
    Description:
      en: Views the ECS instances
      zh-cn: 擷取ECS執行個體
    Action: ACS::SelectTargets
    Properties:
      ResourceType: ALIYUN::ECS::Instance
      RegionId: '{{regionId}}'
      Filters:
        - '{{ targets }}'
    Outputs:
      instanceIds:
        Type: List
        ValueSelector: Instances.Instance[].InstanceId
  - Name: startInstanceFirst
    Action: ACS::ECS::StartInstance
    Description:
      en: Starts the ECS instances
      zh-cn: 首先開啟執行個體
    When:
      Fn::Equals:
        - StartFirst
        - '{{startFirstOrStopFirst}}'
    Properties:
      regionId: '{{ regionId }}'
      instanceId: '{{ ACS::TaskLoopItem }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ getInstance.instanceIds }}'
  - Name: sleepToStopTime
    Action: ACS::Sleep
    Description:
      en: Sleep to instance stop time
      zh-cn: 睡眠到執行個體停止時間
    When:
      Fn::Equals:
        - StartFirst
        - '{{startFirstOrStopFirst}}'
    Properties:
      Duration:
        Fn::DurationBetween:
          - '{{ dailyStartTime }}'
          - '{{ dailyStopTime }}'
  - Name: stopInstanceSecond
    Action: ACS::ECS::StopInstance
    Description:
      en: Stops the ECS instances
      zh-cn: 停止執行個體
    When:
      Fn::Equals:
        - StartFirst
        - '{{startFirstOrStopFirst}}'
    Properties:
      regionId: '{{ regionId }}'
      instanceId: '{{ ACS::TaskLoopItem }}'
      stoppedMode: '{{ stoppedMode }}'
      hibernate: '{{ hibernate }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ getInstance.instanceIds }}'
  - Name: stopInstanceFirst
    Action: ACS::ECS::StopInstance
    Description:
      en: Stop the ECS instances first
      zh-cn: 首先停止執行個體
    When:
      Fn::Equals:
        - StopFirst
        - '{{startFirstOrStopFirst}}'
    Properties:
      regionId: '{{ regionId }}'
      instanceId: '{{ ACS::TaskLoopItem }}'
      stoppedMode: '{{ stoppedMode }}'
      hibernate: '{{ hibernate }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ getInstance.instanceIds }}'
  - Name: sleepToStartTime
    Action: ACS::Sleep
    Description:
      en: Sleep to instance stop time
      zh-cn: 睡眠到執行個體開啟時間
    When:
      Fn::Equals:
        - StopFirst
        - '{{startFirstOrStopFirst}}'
    Properties:
      Duration:
        Fn::DurationBetween:
          - '{{ dailyStopTime }}'
          - '{{ dailyStartTime }}'
  - Name: startInstance
    Action: ACS::ECS::StartInstance
    Description:
      en: Starts the ECS instances
      zh-cn: 開啟執行個體
    When:
      Fn::Equals:
        - StopFirst
        - '{{startFirstOrStopFirst}}'
    Properties:
      regionId: '{{ regionId }}'
      instanceId: '{{ ACS::TaskLoopItem }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ getInstance.instanceIds }}'