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 04c11860a7 Fix to LoadBalancer snippet (#28014)
04c11860a7 is described below
commit 04c11860a7659a3b136fde2a97dc82ff1ab9ecd0
Author: Matt Potter <[email protected]>
AuthorDate: Wed Dec 21 11:38:21 2022 -0800
Fix to LoadBalancer snippet (#28014)
Existing gives error: warning: cannot overwrite table with non table for...
on helm update and doesn't align with the current parameter reference for
webserver:
https://airflow.apache.org/docs/helm-chart/stable/parameters-ref.html#webserver
---
docs/helm-chart/production-guide.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/helm-chart/production-guide.rst
b/docs/helm-chart/production-guide.rst
index 591217ac69..5fd3d30e31 100644
--- a/docs/helm-chart/production-guide.rst
+++ b/docs/helm-chart/production-guide.rst
@@ -205,8 +205,8 @@ You can change the Service type for the webserver to be
``LoadBalancer``, and se
.. code-block:: yaml
webserver:
- service: LoadBalancer
- annotations: {}
+ service:
+ type: LoadBalancer
For more information on ``LoadBalancer`` Services, see the `Kubernetes
LoadBalancer Service Documentation
<https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer>`_.