0

如何启动计算实例并在其上部署容器?我可以看到有一个 python 运算符,但据我了解,它将在 Airflow 工作人员的预制容器中运行脚本,而不是在外部实例上运行脚本。

4

1 回答 1

1

我使用 bash 运算符来创建带有 VM 的计算实例。

create_compute_instance = bash_operator.BashOperator(
    task_id='create_compute',
    bash_command='gcloud beta compute instances create-with-container airflow-vm --zone us-central1-a \
 --container-image gcr.io/cloud-marketplace/google/nginx1:1.12')

在虚拟机上运行容器

于 2018-05-20T11:18:50.917 回答