You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/09/28 19:15:23 UTC

[airflow] branch main updated: [docs] Improve documentation on helm hooks disabling (#26747)

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

jedcunningham 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 520bf2dee4 [docs] Improve documentation on helm hooks disabling (#26747)
520bf2dee4 is described below

commit 520bf2dee47958cb269089929e8c2f16d83688da
Author: Matthew Aguerreberry <mt...@gmail.com>
AuthorDate: Wed Sep 28 16:15:10 2022 -0300

    [docs] Improve documentation on helm hooks disabling (#26747)
    
    Copy and paste the older code snippet into the values.yml did not work, the migrations jobs were not triggered when using ArgoCD. I had to place the code in this format in order to function.
---
 docs/helm-chart/index.rst | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/docs/helm-chart/index.rst b/docs/helm-chart/index.rst
index 38aac191ea..244b00afa6 100644
--- a/docs/helm-chart/index.rst
+++ b/docs/helm-chart/index.rst
@@ -130,7 +130,9 @@ will not start as the migrations will not be run:
 
 .. code-block:: yaml
 
-   createUserJob.useHelmHooks: false
-   migrateDatabaseJob.useHelmHooks: false
+    createUserJob:
+      useHelmHooks: false
+    migrateDatabaseJob:
+      useHelmHooks: false
 
 This also applies if you install the chart using ``--wait`` in your ``helm install`` command.