[bot] [main] Automated version update (#2443)

Co-authored-by: Prometheus Operator Bot <prom-op-bot@users.noreply.github.com>
This commit is contained in:
PromOperatorBot
2024-06-12 10:07:09 +02:00
committed by GitHub
parent 616f59155c
commit eddb948ce3
16 changed files with 1329 additions and 39 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
controller-gen.kubebuilder.io/version: v0.15.0
operator.prometheus.io/version: 0.74.0
name: prometheusagents.monitoring.coreos.com
spec:
@@ -4468,6 +4468,17 @@ spec:
enabling the StatefulSetMinReadySeconds feature gate.
format: int32
type: integer
mode:
description: |-
Mode defines how the Prometheus operator deploys the PrometheusAgent pod(s).
For now this field has no effect.
(Alpha) Using this field requires the `PrometheusAgentDaemonSet` feature gate to be enabled.
enum:
- StatefulSet
- DaemonSet
type: string
nodeSelector:
additionalProperties:
type: string
@@ -4475,10 +4486,11 @@ spec:
type: object
overrideHonorLabels:
description: |-
When true, Prometheus resolves label conflicts by renaming the labels in
the scraped data to "exported_<label value>" for all targets created
from service and pod monitors.
Otherwise the HonorLabels field of the service or pod monitor applies.
When true, Prometheus resolves label conflicts by renaming the labels in the scraped data
to exported_ for all targets created from ServiceMonitor, PodMonitor and
ScrapeConfig objects. Otherwise the HonorLabels field of the service or pod monitor applies.
In practice,`overrideHonorLaels:true` enforces `honorLabels:false`
for all ServiceMonitor, PodMonitor and ScrapeConfig objects.
type: boolean
overrideHonorTimestamps:
description: |-