gpt4 book ai didi

amazon-web-services - 如何在 ansible 中触发多个 aws cloudformation 任务?

转载 作者:行者123 更新时间:2023-12-03 07:26:04 25 4
gpt4 key购买 nike

我正在尝试找到一种通过 ansible 并行触发多个 cloudformation api 调用的方法。

随着堆栈增长很多,单独触发每个任务会占用大量时间。我查看了将 poll 设置为 0 的异步选项(即发即忘)。但这根本不会触发cloudformation任务。

有什么建议吗?

最佳答案

解决方案1:将您的cloudformation调用包装在ansible模块中(易于创建)并在内部使用线程模块。

示例:

import threading

def main():

module=AnsibleModule(
argument_spec=dict(
region=dict(choices=AWS_REGIONS, default='us-east-1'),
aws_secret_key=dict(no_log=True),
aws_access_key=dict(no_log=True)
...
)
)
t = threading.Thread(target=cfn_command)
threads.append(t)
t.start()

解决方案 2:编写一个脚本,将所有功能封装在 ansible 中并触发单个脚本示例:

#!/bin/bash

aws cloudformation list-stacks > foo &
aws cloudformation describe-stack --stack-name aaa > bar &

然后在你的ansible playbook中只需使用shell模块来触发它

关于amazon-web-services - 如何在 ansible 中触发多个 aws cloudformation 任务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31115862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com