Prometheus Server: Fix Default Values Format for Compatibility
This merge request addresses a bug introduced in version 1.0.0-rc7 of the Prometheus chart, where certain configuration values were mistakenly formatted in snake_case instead of camelCase. This caused the chart to ignore these values, leading to discrepancies in ArgoCD deployments, which remained in a non-up-to-date state.
Changes Included:
- Updated configuration fields in templates/prometheus/prometheus.yaml:
- Replaced queue_config with queueConfig
- Updated max_samples_per_send to maxSamplesPerSend
- Replaced batch_send_deadline with batchSendDeadline
- Adjusted write_relabel_configs to writeRelabelConfigs
- Renamed metadata_config to metadataConfig
Edited by Guillermo Facundo Colunga