模板名稱
ACS-ECS-BulkyDeleteExpiredImage 大量刪除到期的鏡像
模板描述
大量刪除到期的鏡像
模板類型
自動化
所有者
Alibaba Cloud
輸入參數
參數名稱 | 描述 | 類型 | 是否必填 | 預設值 | 約束 |
expiredDays | 鏡像到期天數 | Number | 是 | ||
regionId | 地區ID | String | 否 | {{ ACS::RegionId }} | |
force | 是否強制移除鏡像 | Boolean | 否 | False | |
imageName | 用於過濾鏡像的名稱欄位 | String | 否 | ||
tags | 鏡像標籤 | Json | 否 | [] | |
rateControl | 任務執行的並發比率 | Json | 否 | {‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10} | |
OOSAssumeRole | OOS扮演的RAM角色 | String | 否 | “” |
輸出參數
參數名稱 | 描述 | 類型 |
deletedImageIds | List |
執行此模板需要的權限原則
{
"Version": "1",
"Statement": [
{
"Action": [
"ecs:DeleteImage",
"ecs:DescribeImages"
],
"Resource": "*",
"Effect": "Allow"
}
]
}
詳情
ACS-ECS-BulkyDeleteExpiredImage詳情
模板內容
FormatVersion: OOS-2019-06-01
Description:
en: Bulky delete expired image
zh-cn: 大量刪除到期的鏡像
name-en: ACS-ECS-BulkyDeleteExpiredImage
name-zh-cn: 大量刪除到期的鏡像
categories:
- image_manage
Parameters:
regionId:
Label:
en: RegionId
zh-cn: 地區ID
Type: String
AssociationProperty: RegionId
Default: '{{ ACS::RegionId }}'
force:
Label:
en: Forced deletion of Image
zh-cn: 是否強制移除鏡像
Type: Boolean
Default: false
expiredDays:
Label:
en: Image Expiration Days
zh-cn: 鏡像到期天數
Type: Number
imageName:
Label:
en: Name Field Used To Filter Images
zh-cn: 用於過濾鏡像的名稱欄位
Type: String
Default: " "
tags:
Label:
en: Image Tags
zh-cn: 鏡像標籤
Type: Json
AssociationProperty: Tags
AssociationPropertyMetadata:
ShowSystem: false
Default: []
rateControl:
Label:
en: Rate Control
zh-cn: 任務執行的並發比率
Type: Json
AssociationProperty: RateControl
Default:
Mode: Concurrency
MaxErrors: 0
Concurrency: 10
OOSAssumeRole:
Label:
en: OOSAssumeRole
zh-cn: OOS扮演的RAM角色
Type: String
Default: ''
RamRole: '{{ OOSAssumeRole }}'
Tasks:
- Name: describeImages
Action: 'ACS::ExecuteAPI'
Description:
en: Get the images
zh-cn: 擷取鏡像
Properties:
Service: ECS
API: DescribeImages
Parameters:
RegionId: '{{ regionId }}'
ImageOwnerAlias: self
Tags: '{{ tags }}'
Filter:
- Key: CreationEndTime
Value:
'Fn::FormatUTCTime':
- 'Fn::AddHour':
- '{{ ACS::CurrentUTCTime }}'
- "Fn::Eval":
- '-{{ expiredDays }}*24'
- '%Y-%m-%dT00:00Z'
Outputs:
imageIds:
Type: List
ValueSelector: '.Images.Image[] | select( .ImageName | test("{{imageName}}")) | .ImageId'
- Name: deleteImages
Action: 'ACS::ExecuteAPI'
Description:
en: Delete the images
zh-cn: 刪除鏡像
Properties:
Service: ECS
API: DeleteImage
Parameters:
RegionId: '{{ regionId }}'
ImageId: '{{ ACS::TaskLoopItem }}'
Force: '{{ force }}'
Loop:
Items: '{{ describeImages.imageIds }}'
RateControl: '{{ rateControl }}'
Outputs:
deletedImageIds:
Type: List
Value: '{{ describeImages.imageIds }}'
Metadata:
ALIYUN::OOS::Interface:
ParameterGroups:
- Parameters:
- regionId
- expiredDays
- imageName
- tags
- force
Label:
default:
zh-cn: 配置參數
en: Configure Parameters
- Parameters:
- rateControl
- OOSAssumeRole
Label:
default:
zh-cn: 進階選項
en: Control Options