如何在 python 脚本中执行 eksctl 命令?

How to execute eksctl command in python script?

我想在 python 脚本中使用以下 eksctl 命令:

eksctl 创建-f managedcluster.yaml

我想知道此命令的 python 等效项,以便当 python 脚本为 运行 时,托管集群将被创建。

我认为创建 EKS 集群的最佳方法是使用 AWS Boto3 python 库 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.create_cluster .

但是在你的情况下最快的方法是使用子进程库。

例如:

import subprocess
output = subprocess.check_output("eksctl create -f managedcluster.yaml", shell=True)

最佳,