|
1 | | -use crate::util::env_var_from_secret; |
| 1 | +use std::collections::{BTreeMap, BTreeSet, HashMap}; |
| 2 | + |
2 | 3 | use product_config::types::PropertyNameKind; |
3 | | -use stackable_airflow_crd::authentication::{ |
4 | | - AirflowAuthenticationClassResolved, AirflowClientAuthenticationDetailsResolved, |
5 | | -}; |
6 | | -use stackable_airflow_crd::git_sync::GitSync; |
7 | 4 | use stackable_airflow_crd::{ |
8 | | - AirflowCluster, AirflowConfig, AirflowExecutor, AirflowRole, ExecutorConfig, LOG_CONFIG_DIR, |
9 | | - STACKABLE_LOG_DIR, |
| 5 | + authentication::{ |
| 6 | + AirflowAuthenticationClassResolved, AirflowClientAuthenticationDetailsResolved, |
| 7 | + }, |
| 8 | + git_sync::GitSync, |
| 9 | + AirflowCluster, AirflowConfig, AirflowExecutor, AirflowRole, ExecutorConfig, GIT_LINK, |
| 10 | + GIT_SYNC_DIR, LOG_CONFIG_DIR, STACKABLE_LOG_DIR, TEMPLATE_LOCATION, TEMPLATE_NAME, |
10 | 11 | }; |
11 | | -use stackable_airflow_crd::{GIT_LINK, GIT_SYNC_DIR, TEMPLATE_LOCATION, TEMPLATE_NAME}; |
12 | | -use stackable_operator::commons::authentication::oidc; |
13 | | -use stackable_operator::k8s_openapi::api::core::v1::EnvVar; |
14 | | -use stackable_operator::kube::ResourceExt; |
15 | | -use stackable_operator::product_logging::framework::create_vector_shutdown_file_command; |
16 | | -use std::collections::{BTreeMap, BTreeSet, HashMap}; |
| 12 | +use stackable_operator::{ |
| 13 | + commons::authentication::oidc, k8s_openapi::api::core::v1::EnvVar, kube::ResourceExt, |
| 14 | + product_logging::framework::create_vector_shutdown_file_command, |
| 15 | +}; |
| 16 | + |
| 17 | +use crate::util::env_var_from_secret; |
17 | 18 |
|
18 | 19 | const AIRFLOW__LOGGING__LOGGING_CONFIG_CLASS: &str = "AIRFLOW__LOGGING__LOGGING_CONFIG_CLASS"; |
19 | 20 | const AIRFLOW__METRICS__STATSD_ON: &str = "AIRFLOW__METRICS__STATSD_ON"; |
|
0 commit comments