-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS::ECS::PutInventory.yml
143 lines (142 loc) · 4.65 KB
/
ACS::ECS::PutInventory.yml
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
FormatVersion: OOS-2019-06-01
Description:
name-en: ACS::ECS::PutInventory
name-zh-cn: 收集Inventory数据
en: Put inventory data
zh-cn: 收集Inventory数据
Parameters:
regionId:
Description:
en: The ID of region
zh-cn: 地域ID
Type: String
MinLength: 1
MaxLength: 30
instanceId:
Description:
en: The ID of ECS instance
zh-cn: ECS实例ID
Type: String
linuxOptions:
Description:
en: Options string for linux upload inventory
zh-cn: linux收集inventory的操作字符串
Type: String
windowsOptions:
Description:
en: Options string for windows upload_inventory
zh-cn: windows收集inventory的操作字符串
Type: String
Tasks:
- Name: queryInstanceOSType
Action: 'ACS::ExecuteApi'
Description:
en: Queries ECS instance OS type
zh-cn: 查询ECS实例的操作系统类型
Properties:
Service: ECS
API: DescribeInstances
Parameters:
RegionId: '{{ regionId }}'
InstanceIds:
- '{{ instanceId }}'
Outputs:
OSType:
Type: String
ValueSelector: 'Instances.Instance[].OSType'
- Name: putLinuxInventoryData
When:
'Fn::Equals':
- '{{ queryInstanceOSType.OSType }}'
- linux
Action: 'ACS::ECS::RunCommand'
Description:
en: Puts inventory data by run command on linux instance.
zh-cn: 通过在linux类型实例上执行命令收集Inventory数据
Properties:
instanceId: '{{ instanceId }}'
regionId: '{{ regionId }}'
commandType: RunShellScript
commandContent: |-
#/bin/bash
current_version=`aliyun-service -v`
specified_version=1.0.2.497
if [[ $current_version > $specified_version ]]; then
acs-plugin-manager --exec -P oosutil --separator=^ --param upload_inventory^\''{{linuxOptions}}'\'
else
version='{{ ACS::OOSUtilVersion }}'
path=/usr/local/share/aliyun-oosutil/$version
currentPath=`pwd`
test -e $path || mkdir -p $path
cd $path && test -e oosutil_linux || wget -q "https://oos-public-{{regionId}}.oss-{{regionId}}-internal.aliyuncs.com/oosutil/$version/linux/oosutil_linux"
chmod +x oosutil_linux
cd $currentPath
$path/oosutil_linux upload_inventory '{{linuxOptions}}'
fi
Outputs:
commandOutput:
Type: String
ValueSelector: invocationOutput
- Name: putWindowsInventoryData
When:
'Fn::Equals':
- '{{ queryInstanceOSType.OSType }}'
- windows
Action: 'ACS::ECS::RunCommand'
Description:
en: Puts inventory data by run command on windows instance.
zh-cn: 通过在windows类型实例上执行命令收集Inventory数据
Properties:
regionId: '{{ regionId }}'
instanceId: '{{ instanceId }}'
commandType: RunPowerShellScript
commandContent:
'Fn::Join':
- ''
- - |-
$current_version=(aliyun_assist_service.exe -v)
$specified_version="1.0.0.134"
if ($current_version -gt $specified_version){
acs-plugin-manager.exe --exec -P oosutil_win --separator=^ --param upload_inventory^'
- 'Fn::Escape':
- 'Fn::Escape':
- '{{ windowsOptions }}'
- powershell
- powershell
- |-
'
}else{
$version="{{ACS::OOSUtilVersion}}"
$path = "C:\aliyun-oosutil\$version"
$currentPath=(pwd)
$pathExistOrNot = Test-Path -Path "$path"
if ($pathExistOrNot){
cd $path
}else{
mkdir $path
cd $path
}
$client = new-object System.Net.WebClient
$client.DownloadFile("https://oos-public-{{ACS::RegionId}}.oss-{{ACS::RegionId}}-internal.aliyuncs.com/oosutil/$version/windows/oosutil_windows.exe", "$path/oosutil_windows.exe")
cd $currentPath
C:\aliyun-oosutil\{{ ACS::OOSUtilVersion }}\oosutil_windows.exe upload_inventory '
- 'Fn::Escape':
- '{{ windowsOptions }}'
- powershell
- |-
'
}
Outputs:
commandOutput:
Type: String
ValueSelector: invocationOutput
Outputs:
commandOutput:
Type: String
Value:
'Fn::If':
- 'Fn::Equals':
- linux
- '{{ queryInstanceOSType.OSType }}'
- '{{ putLinuxInventoryData.commandOutput }}'
- '{{ putWindowsInventoryData.commandOutput }}'