You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2021/04/01 13:47:19 UTC

[airflow] 04/11: Add missing comma in docs for KubernetesExecutor (#15035)

This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c952545118421a0cba9d5e65a1ae50dab09d0d62
Author: tpilewicz <31...@users.noreply.github.com>
AuthorDate: Fri Mar 26 21:09:23 2021 +0100

    Add missing comma in docs for KubernetesExecutor (#15035)
    
    (cherry picked from commit 0e43b600df123fe2fe3206d5477eaa2c9b4bc1ef)
---
 docs/apache-airflow/executor/kubernetes.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/executor/kubernetes.rst b/docs/apache-airflow/executor/kubernetes.rst
index a0df9db..217a29c 100644
--- a/docs/apache-airflow/executor/kubernetes.rst
+++ b/docs/apache-airflow/executor/kubernetes.rst
@@ -113,7 +113,7 @@ create a V1pod with a single container, and overwrite the fields as follows:
     :start-after: [START task_with_volume]
     :end-before: [END task_with_volume]
 
-Note that volume mounts environment variables, ports, and devices will all be extended instead of overwritten.
+Note that volume mounts, environment variables, ports, and devices will all be extended instead of overwritten.
 
 To add a sidecar container to the launched pod, create a V1pod with an empty first container with the
 name ``base`` and a second container containing your desired sidecar.