-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS::ECS::ActivateSoftware.json
240 lines (240 loc) · 6.15 KB
/
ACS::ECS::ActivateSoftware.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"name-en": "ACS::ECS::ActivateSoftware",
"name-zh-cn": "执行命令并给ECS实例打标签",
"en": "Creates a cloud assistant command and triggers it on an ECS instance",
"zh-cn": "执行一个云助手命令并给ECS实例打标签"
},
"Parameters": {
"regionId": {
"Label": {
"en": "RegionId",
"zh-cn": "地域ID"
},
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::RegionId",
"Default": "{{ ACS::RegionId }}"
},
"instanceId": {
"Label": {
"en": "ECSInstanceId",
"zh-cn": "ECS实例ID"
},
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::Instance::InstanceId",
"AssociationPropertyMetadata": {
"RegionId": "regionId"
}
},
"commandType": {
"Label": {
"en": "CommandType",
"zh-cn": "命令类型"
},
"AssociationPropertyMetadata": {
"LocaleKey": "ECSCommandType"
},
"Type": "String",
"AllowedValues": [
"RunBatScript",
"RunPowerShellScript",
"RunShellScript",
"RunPythonScript",
"RunPerlScript"
]
},
"commandContent": {
"Label": {
"en": "CommandContent",
"zh-cn": "命令内容"
},
"Type": "String",
"AssociationProperty": "ALIYUN::OOS::Command::CommandContent",
"AssociationPropertyMetadata": {
"CommandType": "${commandType}"
}
}
},
"Tasks": [
{
"Name": "untilOrderPaiedReady",
"Action": "ACS::WaitFor",
"Retries": 57,
"Description": {
"en": "Waits for the order is paied",
"zh-cn": "等待订单支付完成"
},
"Properties": {
"Service": "ECS",
"API": "DescribeInstances",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceIds": [
"{{ instanceId }}"
]
},
"NotDesiredValues": [
null
],
"PropertySelector": ".Instances.Instance[0].Tags.Tag[] | select(.TagKey == \"acs:ecs:licenseCode\") | .TagValue"
}
},
{
"Name": "runCommand",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Executes a cloud assistant command",
"zh-cn": "执行云助手命令"
},
"Properties": {
"Service": "ECS",
"API": "RunCommand",
"Parameters": {
"RegionId": "{{ regionId }}",
"CommandContent": "{{ commandContent }}",
"InstanceIds": [
"{{instanceId}}"
],
"Name": "{{ ACS::ExecutionId }}",
"Type": {
"Fn::If": [
{
"Fn::Or": [
{
"Fn::Equals": [
"{{ commandType }}",
"RunPythonScript"
]
},
{
"Fn::Equals": [
"{{ commandType }}",
"RunPerlScript"
]
}
]
},
"RunShellScript",
"{{ commandType }}"
]
}
}
},
"Outputs": {
"invokeId": {
"Type": "String",
"ValueSelector": "InvokeId"
}
}
},
{
"Name": "untilInvocationReady",
"Action": "ACS::WaitFor",
"Description": {
"en": "Waits for the command to be completed",
"zh-cn": "等待云助手命令执行完成"
},
"OnError": "ACS::END",
"Retries": 296,
"MaxRetryInterval": 300,
"Properties": {
"Service": "ECS",
"API": "DescribeInvocations",
"Parameters": {
"RegionId": "{{ regionId }}",
"InvokeId": "{{ runCommand.invokeId }}"
},
"DesiredValues": [
"Finished"
],
"StopRetryValues": [
"Failed",
"Stopped"
],
"PropertySelector": "Invocations.Invocation[].InvokeStatus"
}
},
{
"Name": "describeInvocationResults",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Queries the command output of a cloud assistant command in the specified ECS instance",
"zh-cn": "查看在ECS实例上执行云助手命令的返回结果"
},
"Properties": {
"Service": "ECS",
"API": "DescribeInvocationResults",
"Parameters": {
"RegionId": "{{ regionId }}",
"InvokeId": "{{ runCommand.invokeId }}"
}
},
"Outputs": {
"invocationResult": {
"Type": "String",
"ValueSelector": "Invocation.InvocationResults.InvocationResult[].Output"
}
}
},
{
"Name": "checkInvocationResult",
"Action": "ACS::CheckFor",
"Description": {
"en": "Checks the command exitcode of a cloud assistant command",
"zh-cn": "检测云助手命令的退出码"
},
"OnError": "ACS::END",
"Properties": {
"Service": "ECS",
"API": "DescribeInvocationResults",
"Parameters": {
"RegionId": "{{ regionId }}",
"InvokeId": "{{ runCommand.InvokeId }}"
},
"PropertySelector": "Invocation.InvocationResults.InvocationResult[].ExitCode",
"DesiredValues": [
0
]
}
}
],
"Outputs": {
"invocationOutput": {
"Type": "String",
"Value": {
"Fn::Base64Decode": "{{ describeInvocationResults.invocationResult }}"
}
}
},
"Metadata": {
"ALIYUN::OOS::Interface": {
"ParameterGroups": [
{
"Parameters": [
"regionId",
"instanceId"
],
"Label": {
"default": {
"zh-cn": "选择实例",
"en": "Select Ecs Instances"
}
}
},
{
"Parameters": [
"commandType",
"commandContent"
],
"Label": {
"default": {
"zh-cn": "执行命令选项",
"en": "Run Command Options"
}
}
}
]
}
}
}