diff --git a/airflow/providers/cncf/kubernetes/operators/pod.py b/airflow/providers/cncf/kubernetes/operators/pod.py index 6d79991b1bcc5d..40293121c8750f 100644 --- a/airflow/providers/cncf/kubernetes/operators/pod.py +++ b/airflow/providers/cncf/kubernetes/operators/pod.py @@ -200,6 +200,9 @@ class KubernetesPodOperator(BaseOperator): :param progress_callback: Callback function for receiving k8s container logs. """ + # !!! Changes in KubernetesPodOperator's arguments should be also reflected in !!! + # - airflow/decorators/__init__.pyi (by a separate PR) + # This field can be overloaded at the instance level via base_container_name BASE_CONTAINER_NAME = "base" ISTIO_CONTAINER_NAME = "istio-proxy"