Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ annotations:
artifacthub.io/screenshots: |
- title: Home Page
url: https://airflow.apache.org/docs/apache-airflow/3.2.1/_images/home_dark.png
- title: DAG Overview Dashboard
- title: Dag Overview Dashboard
url: https://airflow.apache.org/docs/apache-airflow/3.2.1/_images/dag_overview_dashboard.png
- title: DAGs View
- title: Dags View
url: https://airflow.apache.org/docs/apache-airflow/3.2.1/_images/dags.png
- title: Assets View
url: https://airflow.apache.org/docs/apache-airflow/3.2.1/_images/asset_view.png
Expand Down
2 changes: 1 addition & 1 deletion chart/templates/dags-persistent-volume-claim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/}}

######################################
## Airflow DAGs PersistentVolumeClaim
## Airflow Dags PersistentVolumeClaim
######################################
{{- if and (not .Values.dags.persistence.existingClaim) .Values.dags.persistence.enabled }}
apiVersion: v1
Expand Down
2 changes: 1 addition & 1 deletion chart/templates/scheduler/scheduler-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# This is important because in $local mode, the scheduler assumes the role of the worker
{{- $persistence := or .Values.workers.celery.persistence.enabled (and (not (has .Values.workers.celery.persistence.enabled (list true false))) .Values.workers.persistence.enabled) }}
{{- $stateful := and $local $persistence }}
# We can skip DAGs mounts on scheduler if dagProcessor is enabled, except with $local mode
# We can skip Dags mounts on scheduler if dagProcessor is enabled, except with $local mode
{{- $localOrDagProcessorDisabled := or (not .Values.dagProcessor.enabled) $local }}
{{- $remoteLogging := or .Values.elasticsearch.enabled .Values.opensearch.enabled }}
{{- $nodeSelector := or .Values.scheduler.nodeSelector .Values.nodeSelector }}
Expand Down
6 changes: 3 additions & 3 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10643,7 +10643,7 @@
]
},
"dags": {
"description": "DAGs settings.",
"description": "Dags settings.",
"type": "object",
"x-docsSection": "Airflow",
"additionalProperties": false,
Expand Down Expand Up @@ -10761,15 +10761,15 @@
"default": "tests/dags"
},
"wait": {
"description": "Interval between git sync attempts in seconds. High values are more likely to cause DAGs to become out of sync between different components. Low values cause more traffic to the remote git repository.",
"description": "Interval between git sync attempts in seconds. High values are more likely to cause Dags to become out of sync between different components. Low values cause more traffic to the remote git repository.",
"type": [
"integer",
"null"
],
"default": null
},
"period": {
"description": "Interval between git sync attempts in Go-style duration string. High values are more likely to cause DAGs to become out of sync between different components. Low values cause more traffic to the remote git repository.",
"description": "Interval between git sync attempts in Go-style duration string. High values are more likely to cause Dags to become out of sync between different components. Low values cause more traffic to the remote git repository.",
"type": "string",
"default": "5s"
},
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3950,7 +3950,7 @@ dags:
# <host2>,<ip2> <key2>

# Interval between git sync attempts in seconds.
# High values are more likely to cause DAGs to become out of sync between different components.
# High values are more likely to cause Dags to become out of sync between different components.
# Low values cause more traffic to the remote git repository.
# Go-style duration string (e.g. "100ms" or "0.1s" = 100ms).
# For backwards compatibility, wait will be used if it is specified.
Expand Down
Loading