You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/helm/airflow-operator/crds/crds.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -591,6 +591,10 @@ spec:
591
591
- repo
592
592
type: object
593
593
type: array
594
+
dbInit:
595
+
default: true
596
+
description: Whether to execute the database initialization routines (a combination of database initialization, upgrade and migration depending on the Airflow version). Defaults to true to be backwward compatible.
597
+
type: boolean
594
598
exposeConfig:
595
599
default: false
596
600
description: for internal use only - not for production use.
Copy file name to clipboardExpand all lines: rust/operator-binary/src/crd/mod.rs
+60-32Lines changed: 60 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -251,6 +251,10 @@ pub mod versioned {
251
251
#[serde(default)]
252
252
pubload_examples:bool,
253
253
254
+
/// Whether to execute the database initialization routines (a combination of database initialization, upgrade and migration depending on the Airflow version). Defaults to true to be backwward compatible.
255
+
#[serde(default = "default_db_init")]
256
+
pubdb_init:bool,
257
+
254
258
/// Name of the Vector aggregator [discovery ConfigMap](DOCS_BASE_URL_PLACEHOLDER/concepts/service_discovery).
255
259
/// It must contain the key `ADDRESS` with the address of the Vector aggregator.
256
260
/// Follow the [logging tutorial](DOCS_BASE_URL_PLACEHOLDER/tutorials/logging-vector-aggregator)
0 commit comments