Kubernetes 上的气流:无法解析图像参考
Airflow on Kubernetes: couldn't parse image reference
运行 GKE 中的气流。
当调度程序产生工人时,我面临下一个问题:
Failed to apply default image tag "my_registry_address_without_https:python:3.9.4-alpine": couldn't parse image reference "my_registry_address_without_https:python:3.9.4-alpine": invalid reference format
在 airflow.cfg
我有下一个配置:
# The repository of the Kubernetes Image for the Worker to Run
worker_container_repository = my_registry_address_without_https
# The tag of the Kubernetes Image for the Worker to Run
worker_container_tag = python:3.9.4-alpine
它应该可以正确解析,但无法理解,我错过了什么..
问题出在存储库的地址上。它应该是 registry/image:
# The repository of the Kubernetes Image for the Worker to Run
worker_container_repository = my_registry_address_without_https/python
# The tag of the Kubernetes Image for the Worker to Run
worker_container_tag = 3.9.4-alpine
运行 GKE 中的气流。 当调度程序产生工人时,我面临下一个问题:
Failed to apply default image tag "my_registry_address_without_https:python:3.9.4-alpine": couldn't parse image reference "my_registry_address_without_https:python:3.9.4-alpine": invalid reference format
在 airflow.cfg
我有下一个配置:
# The repository of the Kubernetes Image for the Worker to Run
worker_container_repository = my_registry_address_without_https
# The tag of the Kubernetes Image for the Worker to Run
worker_container_tag = python:3.9.4-alpine
它应该可以正确解析,但无法理解,我错过了什么..
问题出在存储库的地址上。它应该是 registry/image:
# The repository of the Kubernetes Image for the Worker to Run
worker_container_repository = my_registry_address_without_https/python
# The tag of the Kubernetes Image for the Worker to Run
worker_container_tag = 3.9.4-alpine