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
* `metadata.name` contains the name of the Airflow cluster.
64
-
* `spec.clusterConfig.metadataDatabase` specifies one of the supported database types (in this case, `postgresql`) along with references to the host, database and the secret containing the connection credentials.
63
+
* `metadata.name`: contains the name of the Airflow cluster.
64
+
* `spec.clusterConfig.metadataDatabase`: specifies one of the supported database types (in this case, `postgresql`) along with references to the host, database and the secret containing the connection credentials.
65
65
* the product version of the Docker image provided by Stackable must be set in `spec.image.productVersion`.
66
66
* `spec.celeryExecutors`: deploy executors managed by Airflow's Celery engine.
67
67
Alternatively you can use `kuberenetesExectors` that use Airflow's Kubernetes engine for executor management.
68
68
For more information see https://airflow.apache.org/docs/apache-airflow/stable/executor/index.html#executor-types).
69
69
* `spec.celeryExecutors.celeryResultBackend`: specifies one of the supported database types (in this case, `postgresql`) along with references to the host, database and the secret containing the connection credentials.
70
70
* `spec.celeryExecutors.celeryBrokerUrl`: specifies one of the supported queue/broker types (in this case, `redis`) along with references to the host and the secret containing the connection credentials.
71
-
* the `spec.clusterConfig.loadExamples` key is optional and defaults to `false`.
71
+
* `spec.clusterConfig.loadExamples`: this key is optional and defaults to `false`.
72
72
It is set to `true` here as the example DAGs are used when verifying the installation.
73
-
* the `spec.clusterConfig.exposeConfig` key is optional and defaults to `false`. It is set to `true` only as an aid to verify the configuration and should never be used as such in anything other than test or demo clusters.
74
-
* the secret containing the admin user information must be referenced in `spec.clusterConfig.credentialsSecret`.
73
+
* `spec.clusterConfig.exposeConfig`: this key is optional and defaults to `false`.
74
+
It is set to `true` only as an aid to verify the configuration and should never be used as such in anything other than test or demo clusters.
75
+
* `spec.clusterConfig.credentialsSecret`: specifies the secret containing the Airflow admin user information.
75
76
76
77
NOTE: The version you need to specify for `spec.image.productVersion` is the desired version of Apache Airflow.
77
78
You can optionally specify the `spec.image.stackableVersion` to a certain release like `23.11.0` but it is recommended to leave it out and use the default provided by the operator.
Copy file name to clipboardExpand all lines: docs/modules/airflow/pages/usage-guide/db-connect.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
Airflow requires a metadata database for storing e.g. DAG, task and job data.
5
5
The actual connection string is provided by the operator so that the user does not need to remember the exact structure.
6
-
The same database can be accessed using different drivers: this is also handled by the operator, since the context is known (e.g. job metadata vs. queued job metadata) when parsing the resource file.
6
+
The same database can be accessed using different drivers(e.g. job metadata vs. queued job metadata).
0 commit comments