This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new e294608c6a feat(providers/microsoft): add
AzureContainerInstancesOperator.volume as template field (#34070)
e294608c6a is described below
commit e294608c6a8de6e5ee2b655fa1d461c0150c91b2
Author: Wei Lee <[email protected]>
AuthorDate: Mon Sep 4 17:26:24 2023 +0800
feat(providers/microsoft): add AzureContainerInstancesOperator.volume as
template field (#34070)
---
airflow/providers/microsoft/azure/operators/container_instances.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/providers/microsoft/azure/operators/container_instances.py
b/airflow/providers/microsoft/azure/operators/container_instances.py
index efbe8259b1..73c082003e 100644
--- a/airflow/providers/microsoft/azure/operators/container_instances.py
+++ b/airflow/providers/microsoft/azure/operators/container_instances.py
@@ -119,7 +119,7 @@ class AzureContainerInstancesOperator(BaseOperator):
)
"""
- template_fields: Sequence[str] = ("name", "image", "command",
"environment_variables")
+ template_fields: Sequence[str] = ("name", "image", "command",
"environment_variables", "volumes")
template_fields_renderers = {"command": "bash", "environment_variables":
"json"}
def __init__(