Skip to content

Commit

Permalink
Chart: fix extra containers docs and remove krb excess if (#20787)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aakcht authored Jan 14, 2022
1 parent bbe1eff commit 5ca5693
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions chart/templates/workers/worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,15 +277,13 @@ spec:
{{- if .Values.workers.extraVolumes }}
{{ toYaml .Values.workers.extraVolumes | indent 8 }}
{{- end }}
{{- if .Values.kerberos.enabled }}
- name: kerberos-keytab
secret:
secretName: {{ include "kerberos_keytab_secret" . | quote }}
{{- end }}
- name: config
configMap:
name: {{ template "airflow_config" . }}
{{- if .Values.kerberos.enabled }}
- name: kerberos-keytab
secret:
secretName: {{ include "kerberos_keytab_secret" . | quote }}
- name: kerberos-ccache
emptyDir: {}
{{- end }}
Expand Down
4 changes: 2 additions & 2 deletions docs/helm-chart/using-additional-containers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Sidecar Containers
------------------

If you want to deploy your own sidecar container, you can add it through the ``extraContainers`` parameter.
You can define different containers for the scheduler, webserver and worker pods.
You can define different containers for the scheduler, webserver, worker, triggerer, flower, create user Job and migrate database Job Pods.

For example, sidecars that sync DAGs from object storage.

Expand All @@ -49,7 +49,7 @@ Init Containers
---------------

You can also deploy extra init containers through the ``extraInitContainers`` parameter.
You can define different containers for the scheduler, webserver and worker pods.
You can define different containers for the scheduler, webserver, worker and triggerer pods.

For example, an init container that just says hello:

Expand Down

0 comments on commit 5ca5693

Please sign in to comment.