From cf912957de6b1dc26318dc7c59e92d949f27e30d Mon Sep 17 00:00:00 2001 From: parkhojeong Date: Thu, 30 Apr 2026 02:13:14 +0900 Subject: [PATCH] refactor: word changed from DAG to Dag in chart/ --- chart/Chart.yaml | 4 ++-- chart/templates/dags-persistent-volume-claim.yaml | 2 +- chart/templates/scheduler/scheduler-deployment.yaml | 2 +- chart/values.schema.json | 6 +++--- chart/values.yaml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 089329983ceb4..a497ed7052572 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -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 diff --git a/chart/templates/dags-persistent-volume-claim.yaml b/chart/templates/dags-persistent-volume-claim.yaml index 198330b1f4745..5ebd85f057b3c 100644 --- a/chart/templates/dags-persistent-volume-claim.yaml +++ b/chart/templates/dags-persistent-volume-claim.yaml @@ -18,7 +18,7 @@ */}} ###################################### -## Airflow DAGs PersistentVolumeClaim +## Airflow Dags PersistentVolumeClaim ###################################### {{- if and (not .Values.dags.persistence.existingClaim) .Values.dags.persistence.enabled }} apiVersion: v1 diff --git a/chart/templates/scheduler/scheduler-deployment.yaml b/chart/templates/scheduler/scheduler-deployment.yaml index 231295ad413ea..3ba9d89dae495 100644 --- a/chart/templates/scheduler/scheduler-deployment.yaml +++ b/chart/templates/scheduler/scheduler-deployment.yaml @@ -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 }} diff --git a/chart/values.schema.json b/chart/values.schema.json index 41ab8e16750d3..d5612c1ab3f9f 100644 --- a/chart/values.schema.json +++ b/chart/values.schema.json @@ -10643,7 +10643,7 @@ ] }, "dags": { - "description": "DAGs settings.", + "description": "Dags settings.", "type": "object", "x-docsSection": "Airflow", "additionalProperties": false, @@ -10761,7 +10761,7 @@ "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" @@ -10769,7 +10769,7 @@ "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" }, diff --git a/chart/values.yaml b/chart/values.yaml index db7e726672f46..39e7a4de8aa95 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -3950,7 +3950,7 @@ dags: # , # 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.