Version update (#2474)

This commit is contained in:
Philip Gough
2024-08-07 12:59:58 +01:00
committed by GitHub
parent defa2bd1e2
commit 67df60d1c0
13 changed files with 1248 additions and 77 deletions

View File

@@ -3,7 +3,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.15.0
operator.prometheus.io/version: 0.75.1
operator.prometheus.io/version: 0.75.2
name: alertmanagers.monitoring.coreos.com
spec:
group: monitoring.coreos.com
@@ -967,15 +967,18 @@ spec:
type: object
alertmanagerConfigMatcherStrategy:
description: |-
The AlertmanagerConfigMatcherStrategy defines how AlertmanagerConfig objects match the alerts.
In the future more options may be added.
AlertmanagerConfigMatcherStrategy defines how AlertmanagerConfig objects
process incoming alerts.
properties:
type:
default: OnNamespace
description: |-
If set to `OnNamespace`, the operator injects a label matcher matching the namespace of the AlertmanagerConfig object for all its routes and inhibition rules.
`None` will not add any additional matchers other than the ones specified in the AlertmanagerConfig.
Default is `OnNamespace`.
AlertmanagerConfigMatcherStrategyType defines the strategy used by
AlertmanagerConfig objects to match alerts in the routes and inhibition
rules.
The default value is `OnNamespace`.
enum:
- OnNamespace
- None
@@ -1458,6 +1461,30 @@ spec:
- key
type: object
x-kubernetes-map-type: atomic
maxVersion:
description: |-
Maximum acceptable TLS version.
It requires Prometheus >= v2.41.0.
enum:
- TLS10
- TLS11
- TLS12
- TLS13
type: string
minVersion:
description: |-
Minimum acceptable TLS version.
It requires Prometheus >= v2.35.0.
enum:
- TLS10
- TLS11
- TLS12
- TLS13
type: string
serverName:
description: Used to verify the hostname for the targets.
type: string
@@ -7874,6 +7901,9 @@ spec:
object (their labels match the selector).
format: int32
type: integer
selector:
description: The selector used to match the pods targeted by this Alertmanager object.
type: string
unavailableReplicas:
description: Total number of unavailable pods targeted by this Alertmanager object.
format: int32
@@ -7897,4 +7927,8 @@ spec:
served: true
storage: true
subresources:
scale:
labelSelectorPath: .status.selector
specReplicasPath: .spec.replicas
statusReplicasPath: .status.replicas
status: {}