@@ -308,36 +308,27 @@ The operator exposes the following production-readiness metrics:
308308
309309The operator supports runtime feature flags via the ` stellar-operator-config ` ConfigMap. Changes are picked up ** without restart** .
310310
311+ Dead flags that no longer gated any code paths were removed. Only ` enable_dr ` remains.
312+
311313``` yaml
312314apiVersion : v1
313315kind : ConfigMap
314316metadata :
315317 name : stellar-operator-config
316318 namespace : stellar-system
317319data :
318- enable_cve_scanning : " true"
319- enable_read_pool : " false"
320320 enable_dr : " false"
321- enable_peer_discovery : " true"
322- enable_archive_health : " true"
323- enable_soroban_metrics : " true"
324321` ` `
325322
326- | Flag | Default | Description |
327- | ------------------------ | ------- | ----------------------------------- |
328- | ` enable_cve_scanning` | `true` | Automatic CVE patch reconciliation |
329- | `enable_read_pool` | `false` | Read-replica pool management |
330- | `enable_dr` | `false` | Disaster-recovery drill scheduling |
331- | `enable_peer_discovery` | `true` | Automatic peer discovery |
332- | `enable_archive_health` | `true` | History archive health checks |
333- | `enable_soroban_metrics` | `true` | Soroban-specific Prometheus metrics |
323+ | Flag | Default | Description |
324+ | ----------- | ------- | ------------------------------------------------------------- |
325+ | ` enable_dr` | `false` | Disaster-recovery / cross-region bridge resources and drills |
334326
335327When using the Helm chart, set flags via `values.yaml` :
336328
337329` ` ` yaml
338330featureFlags:
339- enableCveScanning: "true"
340- enableReadPool: "false"
331+ enableDr: false
341332` ` `
342333
343334---
0 commit comments