模板名稱
ACS-ECS-BulkyInstallLogAgent 大量安裝Log Service外掛程式
模板描述
使用這個模板批量的在ECS安裝Log Service外掛程式
模板類型
自動化
所有者
Alibaba Cloud
輸入參數
參數名稱 | 描述 | 類型 | 是否必填 | 預設值 | 約束 |
targets | 目標執行個體 | Json | 是 | ||
regionId | 地區ID | String | 否 | {{ ACS::RegionId }} | |
action | 操作類型 | String | 否 | install | |
overwrite | 是否覆蓋LogAgent | Boolean | 否 | False | |
rateControl | 任務執行的並發比率 | Json | 否 | {‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10} | |
OOSAssumeRole | OOS扮演的RAM角色 | String | 否 | “” |
輸出參數
參數名稱 | 描述 | 類型 |
commandOutput | String |
執行此模板需要的權限原則
{
"Version": "1",
"Statement": [
{
"Action": [
"ecs:DescribeInstances",
"ecs:DescribeInvocationResults",
"ecs:DescribeInvocations",
"ecs:RunCommand"
],
"Resource": "*",
"Effect": "Allow"
}
]
}
詳情
ACS-ECS-BulkyInstallLogAgent詳情
模板內容
FormatVersion: OOS-2019-06-01
Description:
en: Use this template to install sls agent on ecs
zh-cn: 使用這個模板批量的在ECS安裝Log Service外掛程式
name-en: ACS-ECS-BulkyInstallLogAgent
name-zh-cn: 大量安裝Log Service外掛程式
categories:
- run_command
Parameters:
regionId:
Type: String
Label:
en: RegionId
zh-cn: 地區ID
AssociationProperty: RegionId
Default: '{{ ACS::RegionId }}'
action:
Type: String
Label:
en: Action
zh-cn: 操作類型
AllowedValues:
- install
- upgrade
- uninstall
Default: install
overwrite:
Description:
en: 'If logAgent exists in the instance, choose whether to overwrite LogAgent(Default no).'
zh-cn: 如果執行個體記憶體在logAgent時,選擇是否覆蓋LogAgent(預設不覆蓋)
Label:
en: Overwrite
zh-cn: 是否覆蓋LogAgent
Type: Boolean
Default: false
targets:
Type: Json
Label:
en: TargetInstance
zh-cn: 目標執行個體
AssociationProperty: Targets
AssociationPropertyMetadata:
ResourceType: 'ALIYUN::ECS::Instance'
RegionId: regionId
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: ''
RamRole: '{{ OOSAssumeRole }}'
Tasks:
- 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'
instanceInfos:
Type: List
ValueSelector: '.Instances.Instance[] | {"osType":.OSType, "instanceId":.InstanceId}'
- Name: runCommand
Action: 'ACS::ECS::RunCommand'
Properties:
commandContent:
'Fn::If':
- 'Fn::Equals':
- 'Fn::Jq':
- First
- '.|map(select(.instanceId == "{{ ACS::TaskLoopItem }}").osType)[]'
- '{{ getInstance.instanceInfos }}'
- linux
- |-
set -e
installLogAgent(){
message=`./logtail.sh install {{ regionId }} 2>/dev/null`
if [ $? = 0 ]; then
cat /usr/local/ilogtail/app_info.json
else
echo "$message"
exit 1
fi
}
wget http://logtail-release-{{ regionId }}.oss-{{ regionId }}-internal.aliyuncs.com/linux64/logtail.sh -q -O logtail.sh;
if [ $? != 0 ]; then
echo "Failed to download logtail_installer, Please check your network service."
exit 1
fi
chmod 755 logtail.sh;
if [ "{{action}}" = "install" ]; then
wetherOverwriteAgent="{{overwrite}}"
if [ $wetherOverwriteAgent = "true" ]; then
installLogAgent
else
logVersionPath="/usr/local/ilogtail/app_info.json"
if [ -f "$logVersionPath" ]; then
echo 'already has LogAgent'
exit 0
else
installLogAgent
fi
fi
elif [ "{{action}}" = "upgrade" ]; then
message=`./logtail.sh upgrade 2>/dev/null`
if [ $? = 0 ]; then
cat /usr/local/ilogtail/app_info.json
else
echo "$message"
exit 1
fi
else
./logtail.sh uninstall
fi
- |-
function installLogAgent
{
.\logtail_installer.exe install {{ regionId }}
if (! $?)
{
echo "Failed to install install log and to start log service Failed, please try again."
exit 1
}
echo 'Install complete'
}
$action="{{ action }}"
$pathExistOrNot = Test-Path -Path "C:\Users\Administrator\OOSPackages"
if ($pathExistOrNot)
{
cd C:\Users\Administrator\OOSPackages
} else
{
mkdir C:\Users\Administrator\OOSPackages
cd C:\Users\Administrator\OOSPackages
echo 'File created'
}
$client = new-object System.Net.WebClient
$client.DownloadFile('http://logtail-release-{{ regionId }}.oss-{{ regionId }}-internal.aliyuncs.com/win/logtail_installer.zip', 'C:\Users\Administrator\OOSPackages\logtail_installer.zip')
if (! $?)
{
echo "Failed to download logtail_installer, Please check your network service."
exit 1
}
Expand-Archive -Force -Path C:\Users\Administrator\OOSPackages\logtail_installer.zip -DestinationPath C:\Users\Administrator\OOSPackages
switch($action)
{
"install" {
$wetherOverwriteAgent = "{{overwrite}}"
if ($wetherOverwriteAgent -eq "true")
{
installLogAgent
} else
{
if ([Environment]::Is64BitOperatingSystem)
{
$logAgentPath = Test-Path -Path "C:\Program Files (x86)\Alibaba\Logtail"
if ($logAgentPath)
{
echo 'already has LogAgent'
exit 0
} else
{
installLogAgent
}
} else
{
$logAgentPath = Test-Path -Path "C:\Program Files\Alibaba\Logtail"
if ($logAgentPath)
{
echo 'already has LogAgent'
} else
{
installLogAgent
}
}
}
}
"upgrade" {
.\logtail_installer.exe uninstall
.\logtail_installer.exe install {{ regionId }}
echo 'upgrade complete'
}
"uninstall" {
.\logtail_installer.exe uninstall
echo 'uninstall complete'
}
}
$allFile = Get-ChildItem -Path "C:\Users\Administrator\OOSPackages"
foreach($file in $allFile)
{
Remove-Item $file.FullName -Recurse -Force
}
cd ..
del C:\Users\Administrator\OOSPackages
instanceId: '{{ ACS::TaskLoopItem }}'
regionId: '{{ regionId }}'
commandType:
'Fn::If':
- 'Fn::Equals':
- 'Fn::Jq':
- First
- '.|map(select(.instanceId == "{{ ACS::TaskLoopItem }}").osType)[]'
- '{{ getInstance.instanceInfos }}'
- linux
- RunShellScript
- RunPowerShellScript
Loop:
Items: '{{ getInstance.instanceIds }}'
RateControl: '{{ rateControl }}'
Outputs:
commandOutputs:
AggregateType: 'Fn::ListJoin'
AggregateField: commandOutput
Outputs:
commandOutput:
Type: String
ValueSelector: invocationOutput
Outputs:
commandOutput:
Type: String
Value: '{{ runCommand.commandOutputs }}'
Metadata:
ALIYUN::OOS::Interface:
ParameterGroups:
- Parameters:
- action
- overwrite
Label:
default:
zh-cn: 設定參數
en: Configure Parameters
- Parameters:
- regionId
- targets
Label:
default:
zh-cn: 選擇執行個體
en: Select Ecs Instances
- Parameters:
- rateControl
- OOSAssumeRole
Label:
default:
zh-cn: 進階選項
en: Control Options