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 23b8e839a3 Documentation Changes (#32185)
23b8e839a3 is described below
commit 23b8e839a35e84d57c5cf38b0b21171ac3bd1ecc
Author: Vijayasarathi Balasubramanian <[email protected]>
AuthorDate: Tue Jun 27 14:09:55 2023 -0400
Documentation Changes (#32185)
Readability change in the kubernetes.rst tutorial file
---
docs/apache-airflow/administration-and-deployment/kubernetes.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/apache-airflow/administration-and-deployment/kubernetes.rst
b/docs/apache-airflow/administration-and-deployment/kubernetes.rst
index 961a93328b..160694fa11 100644
--- a/docs/apache-airflow/administration-and-deployment/kubernetes.rst
+++ b/docs/apache-airflow/administration-and-deployment/kubernetes.rst
@@ -27,7 +27,7 @@ and autoscaling options that Kubernetes provides.
Helm Chart for Kubernetes
=========================
-We maintain :doc:`official Helm chart <helm-chart:index>` for Airflow that
helps you define, install, and upgrade deployment. The Helm Chart uses
:doc:`official Docker image and Dockerfile <docker-stack:index>` that is also
maintained and released by the community.
+We maintain an :doc:`official Helm chart <helm-chart:index>` for Airflow that
helps you define, install, and upgrade deployment. The Helm Chart uses
:doc:`official Docker image and Dockerfile <docker-stack:index>` that is also
maintained and released by the community.
Kubernetes Executor
^^^^^^^^^^^^^^^^^^^
@@ -47,7 +47,7 @@ Pod Mutation Hook
The Airflow local settings file (``airflow_local_settings.py``) can define a
``pod_mutation_hook`` function
that has the ability to mutate pod objects before sending them to the
Kubernetes client
for scheduling. It receives a single argument as a reference to pod objects,
and
-is expected to alter its attributes.
+are expected to alter its attributes.
This could be used, for instance, to add sidecar or init containers
to every worker pod launched by KubernetesExecutor or KubernetesPodOperator.