-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathACS::ESS::ConfigureOOSPackage.json
More file actions
338 lines (338 loc) · 11.1 KB
/
ACS::ESS::ConfigureOOSPackage.json
File metadata and controls
338 lines (338 loc) · 11.1 KB
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"name-en": "ACS::ESS::ConfigureOOSPackage",
"name-zh-cn": "在伸缩组内的ECS实例中安装OOS自定义软件包",
"en": "Configure oos package on ECS instances that in scaling group",
"zh-cn": "在伸缩组内的ECS实例中安装OOS自定义软件包"
},
"Parameters": {
"regionId": {
"Description": {
"en": "The ID of region",
"zh-cn": "地域ID"
},
"Type": "String",
"Default": "{{ ACS::RegionId }}"
},
"rollBack": {
"Description": {
"en": "Whether to roll back",
"zh-cn": "是否回滚"
},
"Type": "String",
"AllowedValues": [
"true",
"false"
],
"Default": "false"
},
"instanceId": {
"Description": {
"en": "The ID of ECS instance",
"zh-cn": "ECS实例ID"
},
"Type": "String",
"MinLength": 1,
"MaxLength": 30
},
"lifecycleState": {
"Description": {
"en": "The lifecycle status of ECS instance",
"zh-cn": "ECS实例生命周期状态"
},
"Type": "String",
"AllowedValues": [
"InService",
"Protected"
],
"Default": "InService"
},
"action": {
"Description": {
"en": "The action to configure package",
"zh-cn": "安装软件包的方式"
},
"Type": "String",
"AllowedValues": [
"install",
"uninstall"
],
"Default": "install"
},
"packageName": {
"Description": {
"en": "The name of package",
"zh-cn": "软件包名称"
},
"Type": "String"
},
"packageVersion": {
"Description": {
"en": "The version of OOS package",
"zh-cn": "OOS软件包版本"
},
"Type": "String",
"Default": ""
},
"scalingGroupId": {
"Description": {
"en": "The ID of scaling group",
"zh-cn": "伸缩组ID"
},
"Type": "String"
}
},
"Tasks": [
{
"Name": "viewInstanceLifecycleState",
"Action": "ACS::ExecuteApi",
"Description": {
"en": "Queries ECS instance lifecycle status",
"zh-cn": "获取实例生命周期挂钩的状态"
},
"Properties": {
"Service": "ESS",
"API": "DescribeScalingInstances",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceId1": "{{ instanceId }}"
}
},
"Outputs": {
"lifecycleState": {
"Type": "String",
"ValueSelector": "ScalingInstances.ScalingInstance[].LifecycleState"
}
}
},
{
"Name": "whetherLifecycleStateIsStandby",
"Action": "ACS::Choice",
"Description": {
"en": "Choose next task by lifecycle status",
"zh-cn": "根据实例生命周期挂钩的状态选择下一个任务"
},
"Properties": {
"DefaultTask": "enterStandby",
"Choices": [
{
"When": {
"Fn::Equals": [
"Standby",
"{{ viewInstanceLifecycleState.lifecycleState }}"
]
},
"NextTask": "queryInstanceOSType"
},
{
"When": {
"Fn::Equals": [
"Protected",
"{{ viewInstanceLifecycleState.lifecycleState }}"
]
},
"NextTask": "setInstancesProtectionToFalse"
}
]
}
},
{
"Name": "setInstancesProtectionToFalse",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Sets the protection status of ECS instances to false",
"zh-cn": "设置ECS实例的保护状态为false"
},
"Properties": {
"Service": "ESS",
"API": "SetInstancesProtection",
"Parameters": {
"RegionId": "{{ regionId }}",
"ScalingGroupId": "{{ scalingGroupId }}",
"InstanceIds": [
"{{ instanceId }}"
],
"ProtectedFromScaleIn": "false"
}
}
},
{
"Name": "enterStandby",
"Action": "ACS::WaitFor",
"Description": {
"en": "Waits for ECS instance to enter standby status",
"zh-cn": "等待实例进入standby状态"
},
"Retries": 30,
"Delay": 10,
"DelayType": "Constant",
"Properties": {
"Service": "ESS",
"API": "EnterStandby",
"Parameters": {
"RegionId": "{{ regionId }}",
"ScalingGroupId": "{{ scalingGroupId }}",
"InstanceId": [
"{{ instanceId }}"
]
},
"DesiredValues": [
"CodeNotExists"
],
"StopRetryValues": [
"OtherCodes"
],
"PropertySelector": ".| if .Code==null then \"CodeNotExists\" else if .Code==\"BackendServer.configuring\" or .Code==\"IncorrectScalingGroupStatus\" then \"RetryCodeExists\" else \"OtherCodes\" end end"
}
},
{
"Name": "queryInstanceOSType",
"Action": "ACS::ExecuteApi",
"Description": {
"en": "Queries ECS instance OS type",
"zh-cn": "获取实例操作系统类型"
},
"Properties": {
"Service": "ECS",
"API": "DescribeInstances",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceIds": [
"{{ instanceId }}"
]
}
},
"Outputs": {
"OSType": {
"Type": "String",
"ValueSelector": "Instances.Instance[].OSType"
}
}
},
{
"Name": "configureLinuxPackage",
"Description": {
"en": "Configures OOS package on Linux instance",
"zh-cn": "在Linux类型实例中安装OOS软件包"
},
"When": {
"Fn::Equals": [
"{{ queryInstanceOSType.OSType }}",
"linux"
]
},
"Action": "ACS::ECS::RunCommand",
"Properties": {
"instanceId": "{{ instanceId }}",
"regionId": "{{ regionId }}",
"commandType": "RunShellScript",
"commandContent": "#/bin/bash\ncurrent_version=`aliyun-service -v`\nspecified_version=1.0.2.497\n\nif [[ $current_version > $specified_version ]]; then\n if [ '{{ packageVersion }}' = '' ] ; then\n acs-plugin-manager --exec -P oosutil --params configure_package,{{action}},{{packageName}}\n else\n acs-plugin-manager --exec -P oosutil --params configure_package,{{action}},{{packageName}},--package-version,{{packageVersion}}\n fi\nelse\n version='{{ ACS::OOSUtilVersion }}'\n path=/usr/local/share/aliyun-oosutil/$version\n test -e $path || mkdir -p $path\n currentPath=`pwd`\n cd $path && test -e oosutil_linux || wget -q \"https://oos-public-{{regionId}}.oss-{{regionId}}-internal.aliyuncs.com/oosutil/$version/linux/oosutil_linux\"\n chmod +x oosutil_linux\n cd $currentPath\n if [ '{{ packageVersion }}' = '' ] ; then\n $path/oosutil_linux configure_package {{action}} {{packageName}}\n else\n $path/oosutil_linux configure_package {{action}} {{packageName}} --package-version {{packageVersion}}\n fi\nfi"
},
"Outputs": {
"commandOutput": {
"Type": "String",
"ValueSelector": "invocationOutput"
}
}
},
{
"Name": "configureWindowsPackage",
"Description": {
"en": "Configures OOS package on Windows instance",
"zh-cn": "在Windows类型实例中安装OOS软件包"
},
"When": {
"Fn::Equals": [
"{{ queryInstanceOSType.OSType }}",
"windows"
]
},
"Action": "ACS::ECS::RunCommand",
"Properties": {
"regionId": "{{ regionId }}",
"instanceId": "{{ instanceId }}",
"commandType": "RunPowerShellScript",
"commandContent": "$current_version=(aliyun_assist_service.exe -v)\n$specified_version=\"1.0.0.134\"\nif ($current_version -gt $specified_version){\n if ('{{ packageVersion }}'){\n acs-plugin-manager.exe --exec -P oosutil_win --params \"configure_package,{{action}},{{packageName}},--package-version,{{packageVersion}}\"\n }else{\n acs-plugin-manager.exe --exec -P oosutil_win --params \"configure_package,{{action}},{{packageName}}\"\n }\n}else{\n $version=\"{{ACS::OOSUtilVersion}}\"\n $path = \"C:\\aliyun-oosutil\\$version\"\n $currentPath=(pwd)\n $pathExistOrNot = Test-Path -Path \"$path\"\n if ($pathExistOrNot){\n cd $path\n }else{\n mkdir $path\n cd $path\n }\n $client = new-object System.Net.WebClient\n $client.DownloadFile(\"https://oos-public-{{ACS::RegionId}}.oss-{{ACS::RegionId}}-internal.aliyuncs.com/oosutil/$version/windows/oosutil_windows.exe\", \"$path/oosutil_windows.exe\")\n cd $currentPath\n if ('{{ packageVersion }}'){\n C:\\aliyun-oosutil\\{{ ACS::OOSUtilVersion }}\\oosutil_windows.exe configure_package {{action}} {{packageName}} --package-version {{ packageVersion }}\n }else{\n C:\\aliyun-oosutil\\{{ ACS::OOSUtilVersion }}\\oosutil_windows.exe configure_package {{action}} {{packageName}}\n }\n}"
},
"Outputs": {
"commandOutput": {
"Type": "String",
"ValueSelector": "invocationOutput"
}
}
},
{
"Name": "exitStandBy",
"Action": "ACS::WaitFor",
"Description": {
"en": "Modifies the state of ECS instances in a scaling group from Standby to Running",
"zh-cn": "设置伸缩组内处于备用状态的ECS实例为运行中状态"
},
"Retries": 30,
"Delay": 10,
"DelayType": "Constant",
"Properties": {
"Service": "ESS",
"API": "ExitStandBy",
"Parameters": {
"RegionId": "{{ regionId }}",
"ScalingGroupId": "{{ scalingGroupId }}",
"InstanceId": [
"{{ instanceId }}"
]
},
"DesiredValues": [
"CodeNotExists"
],
"StopRetryValues": [
"OtherCodes"
],
"PropertySelector": ".| if .Code==null then \"CodeNotExists\" else if .Code==\"BackendServer.configuring\" or .Code==\"IncorrectScalingGroupStatus\" then \"RetryCodeExists\" else \"OtherCodes\" end end"
}
},
{
"Name": "setInstancesProtectionToTrue",
"Action": "ACS::ExecuteAPI",
"When": {
"Fn::Equals": [
"Protected",
"{{ lifecycleState }}"
]
},
"Description": {
"en": "Sets the protection status of ECS instances to true",
"zh-cn": "设置ECS实例的保护状态为true"
},
"Properties": {
"Service": "ESS",
"API": "SetInstancesProtection",
"Parameters": {
"RegionId": "{{ regionId }}",
"ScalingGroupId": "{{ scalingGroupId }}",
"InstanceIds": [
"{{ instanceId }}"
],
"ProtectedFromScaleIn": "true"
}
}
}
],
"Outputs": {
"commandOutput": {
"Type": "String",
"Value": {
"Fn::If": [
{
"Fn::Equals": [
"linux",
"{{ queryInstanceOSType.OSType }}"
]
},
"{{ configureLinuxPackage.commandOutput }}",
"{{ configureWindowsPackage.commandOutput }}"
]
}
}
}
}