我想在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)
最佳,