boto3 创建自动缩放组
boto3 create auto scaling group
我正在尝试使用 boto3 创建一个具有不同模板和类型的自动缩放组,
希望有人能在这里帮助我:)
这是我使用的代码:
import boto3
client = boto3.client('autoscaling')
def create_auto_scaling_group(**kwargs):
response = client.create_auto_scaling_group(
AutoScalingGroupName='TEST-ASG',
LaunchTemplate={
'LaunchTemplateName': 'TEST-Template',
'Version': '5'
},
MixedInstancesPolicy={
'LaunchTemplate': {
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '5'
},
'Overrides': [
{
'InstanceType': 'g4dn.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '5'
}
},
{
'InstanceType': 'g3s.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '4'
}
},
{
'InstanceType': 'p3.2xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '6'
}
},
]
},
'InstancesDistribution': {
'OnDemandBaseCapacity': 0,
'OnDemandPercentageAboveBaseCapacity': 0,
'SpotAllocationStrategy': 'capacity-optimized',
}
},
MinSize=0,
MaxSize=0,
DesiredCapacity=0,
AvailabilityZones=[
'string',
'string',
'string',
],
Tags=[
{
'ResourceId': 'TEST-ASG',
'ResourceType': 'auto-scaling-group',
'Key': 'Name',
'Value': 'TEST-ASG',
'PropagateAtLaunch': True
},
],
)
create_auto_scaling_group()
我收到以下回复,但似乎无法找到导致它的原因:
Traceback (most recent call last):
File "c:/Users/bena/PycharmProjects/pythonProject/pythonProject/New/AutoScaleOverride.py", line 69, in <module>
create_auto_scaling_group()
File "c:/Users/bena/PycharmProjects/pythonProject/pythonProject/New/AutoScaleOverride.py", line 8, in create_auto_scaling_group
response = client.create_auto_scaling_group(
File "C:\Users\bena\AppData\Local\Programs\Python\Python38\lib\site-packages\botocore\client.py", line 357, in _api_call
return self._make_api_call(operation_name, kwargs)
File "C:\Users\bena\AppData\Local\Programs\Python\Python38\lib\site-packages\botocore\client.py", line 676, in _make_api_call
raise error_class(parsed_response, operation_name)
botocore.exceptions.ClientError: An error occurred (ValidationError) when calling the CreateAutoScalingGroup operation: Valid requests must contain either LaunchTemplate, LaunchConfigurationName, InstanceId or MixedInstancesPolicy parameter.
我在一个单独的 aws-cli 脚本上尝试过,它起作用了,这意味着所有内容都已创建且没有错误。
第一次尝试,如有任何帮助,将不胜感激。
谢谢
好像是自己管理的:)
在此处添加对我有用的内容:
import boto3
client = boto3.client('autoscaling')
response = client.create_auto_scaling_group(
AutoScalingGroupName='ASGName',
MixedInstancesPolicy={
'LaunchTemplate': {
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '5'
},
'Overrides': [
{
'InstanceType': 'g4dn.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '5'
}
},
{
'InstanceType': 'g3s.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '4'
}
},
{
'InstanceType': 'p3.2xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '6'
}
},
]
},
'InstancesDistribution': {
'OnDemandBaseCapacity': 0,
'OnDemandPercentageAboveBaseCapacity': 0,
'SpotAllocationStrategy': 'capacity-optimized',
}
},
MinSize=0,
MaxSize=0,
DesiredCapacity=0,
VPCZoneIdentifier='subnet-1, subnet-2, subnet-3',
Tags=[
{
'ResourceId': 'ASGName',
'ResourceType': 'auto-scaling-group',
'Key': 'Name',
'Value': 'ASGName',
'PropagateAtLaunch': True
},
],
)
print(response)
我正在尝试使用 boto3 创建一个具有不同模板和类型的自动缩放组,
希望有人能在这里帮助我:) 这是我使用的代码:
import boto3
client = boto3.client('autoscaling')
def create_auto_scaling_group(**kwargs):
response = client.create_auto_scaling_group(
AutoScalingGroupName='TEST-ASG',
LaunchTemplate={
'LaunchTemplateName': 'TEST-Template',
'Version': '5'
},
MixedInstancesPolicy={
'LaunchTemplate': {
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '5'
},
'Overrides': [
{
'InstanceType': 'g4dn.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '5'
}
},
{
'InstanceType': 'g3s.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '4'
}
},
{
'InstanceType': 'p3.2xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateName': 'TEST-Template',
'Version': '6'
}
},
]
},
'InstancesDistribution': {
'OnDemandBaseCapacity': 0,
'OnDemandPercentageAboveBaseCapacity': 0,
'SpotAllocationStrategy': 'capacity-optimized',
}
},
MinSize=0,
MaxSize=0,
DesiredCapacity=0,
AvailabilityZones=[
'string',
'string',
'string',
],
Tags=[
{
'ResourceId': 'TEST-ASG',
'ResourceType': 'auto-scaling-group',
'Key': 'Name',
'Value': 'TEST-ASG',
'PropagateAtLaunch': True
},
],
)
create_auto_scaling_group()
我收到以下回复,但似乎无法找到导致它的原因:
Traceback (most recent call last):
File "c:/Users/bena/PycharmProjects/pythonProject/pythonProject/New/AutoScaleOverride.py", line 69, in <module>
create_auto_scaling_group()
File "c:/Users/bena/PycharmProjects/pythonProject/pythonProject/New/AutoScaleOverride.py", line 8, in create_auto_scaling_group
response = client.create_auto_scaling_group(
File "C:\Users\bena\AppData\Local\Programs\Python\Python38\lib\site-packages\botocore\client.py", line 357, in _api_call
return self._make_api_call(operation_name, kwargs)
File "C:\Users\bena\AppData\Local\Programs\Python\Python38\lib\site-packages\botocore\client.py", line 676, in _make_api_call
raise error_class(parsed_response, operation_name)
botocore.exceptions.ClientError: An error occurred (ValidationError) when calling the CreateAutoScalingGroup operation: Valid requests must contain either LaunchTemplate, LaunchConfigurationName, InstanceId or MixedInstancesPolicy parameter.
我在一个单独的 aws-cli 脚本上尝试过,它起作用了,这意味着所有内容都已创建且没有错误。
第一次尝试,如有任何帮助,将不胜感激。
谢谢
好像是自己管理的:)
在此处添加对我有用的内容:
import boto3
client = boto3.client('autoscaling')
response = client.create_auto_scaling_group(
AutoScalingGroupName='ASGName',
MixedInstancesPolicy={
'LaunchTemplate': {
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '5'
},
'Overrides': [
{
'InstanceType': 'g4dn.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '5'
}
},
{
'InstanceType': 'g3s.xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '4'
}
},
{
'InstanceType': 'p3.2xlarge',
'LaunchTemplateSpecification': {
'LaunchTemplateId': 'Id',
'Version': '6'
}
},
]
},
'InstancesDistribution': {
'OnDemandBaseCapacity': 0,
'OnDemandPercentageAboveBaseCapacity': 0,
'SpotAllocationStrategy': 'capacity-optimized',
}
},
MinSize=0,
MaxSize=0,
DesiredCapacity=0,
VPCZoneIdentifier='subnet-1, subnet-2, subnet-3',
Tags=[
{
'ResourceId': 'ASGName',
'ResourceType': 'auto-scaling-group',
'Key': 'Name',
'Value': 'ASGName',
'PropagateAtLaunch': True
},
],
)
print(response)