We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae3303 commit f4ecd43Copy full SHA for f4ecd43
1 file changed
rust/operator-binary/src/airflow_controller.rs
@@ -575,7 +575,11 @@ pub async fn reconcile_airflow(
575
listener_refs
576
);
577
578
- if !listener_refs.is_empty() {
+ // if paused or stopped the podrefs have not been collected (see comment
579
+ // above): the config map should remain unchanged if paused, but the
580
+ // refs removed from it if the cluster is stopped as replicas will
581
+ // have been set to 0.
582
+ if !airflow.spec.cluster_operation.reconciliation_paused {
583
let endpoint_cm =
584
build_discovery_configmap(airflow, &resolved_product_image, &listener_refs)
585
.context(BuildDiscoveryConfigMapSnafu)?;
0 commit comments