eladkal commented on code in PR #32858:
URL: https://github.com/apache/airflow/pull/32858#discussion_r1284671440
##########
airflow/providers/cncf/kubernetes/utils/pod_manager.py:
##########
@@ -101,6 +101,12 @@ def get_pod(self, name: str, namespace: str) -> V1Pod:
def get_namespace(self) -> str | None:
"""Returns the namespace that defined in the connection."""
+ def get_xcom_sidecar_container_image(self) -> str | None:
+ """Returns the xcom sidecar image that defined in the connection"""
Review Comment:
```suggestion
"""Returns the xcom sidecar image that defined in the connection."""
```
##########
airflow/providers/cncf/kubernetes/utils/pod_manager.py:
##########
@@ -101,6 +101,12 @@ def get_pod(self, name: str, namespace: str) -> V1Pod:
def get_namespace(self) -> str | None:
"""Returns the namespace that defined in the connection."""
+ def get_xcom_sidecar_container_image(self) -> str | None:
+ """Returns the xcom sidecar image that defined in the connection"""
+
+ def get_xcom_sidecar_container_resources(self) -> str | None:
+ """Returns the xcom sidecar resources that defined in the connection"""
Review Comment:
```suggestion
"""Returns the xcom sidecar resources that defined in the
connection."""
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]