Skip to content

Commit 657b492

Browse files
[prometheus-operator-crds] Update dependency prometheus-operator/prometheus-operator to v0.87.0 (#6343)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: helm-charts-renovate-helper[bot] <203471071+helm-charts-renovate-helper[bot]@users.noreply.github.com>
1 parent ea1878b commit 657b492

File tree

11 files changed

+114
-71
lines changed

11 files changed

+114
-71
lines changed

charts/prometheus-operator-crds/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
type: application
3-
version: 24.0.2
3+
version: 25.0.0
44
name: prometheus-operator-crds
55
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
66
description: |
@@ -10,7 +10,7 @@ keywords:
1010
- prometheus
1111
- crds
1212
# renovate: github=prometheus-operator/prometheus-operator
13-
appVersion: v0.86.2
13+
appVersion: v0.87.0
1414
kubeVersion: ">=1.16.0-0"
1515
sources:
1616
- https://github.com/prometheus-community/helm-charts

charts/prometheus-operator-crds/charts/crds/templates/crd-alertmanagerconfigs.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.alertmanagerconfigs.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagerconfigs.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagerconfigs.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: alertmanagerconfigs.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com
@@ -5301,6 +5301,11 @@ spec:
53015301
message defines the notification message content.
53025302
This is the main body text of the Pushover notification.
53035303
type: string
5304+
monospace:
5305+
description: |-
5306+
monospace optional HTML/monospace formatting for the message, see https://pushover.net/api#html
5307+
html and monospace formatting are mutually exclusive.
5308+
type: boolean
53045309
priority:
53055310
description: |-
53065311
priority defines the notification priority level.
@@ -8055,7 +8060,7 @@ spec:
80558060
x-kubernetes-map-type: atomic
80568061
useFIPSSTSEndpoint:
80578062
description: |-
8058-
useFIPSSTSEndpoint defines FIPS mode for AWS STS endpoint.
8063+
useFIPSSTSEndpoint defines the FIPS mode for the AWS STS endpoint.
80598064
It requires Prometheus >= v2.54.0.
80608065
type: boolean
80618066
type: object

charts/prometheus-operator-crds/charts/crds/templates/crd-alertmanagers.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.alertmanagers.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagers.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagers.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: alertmanagers.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com

charts/prometheus-operator-crds/charts/crds/templates/crd-podmonitors.yaml

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.podmonitors.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_podmonitors.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_podmonitors.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: podmonitors.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com
@@ -797,11 +797,29 @@ spec:
797797
description: |-
798798
port defines the `Pod` port name which exposes the endpoint.
799799
800+
If the pod doesn't expose a port with the same name, it will result
801+
in no targets being discovered.
802+
803+
If a `Pod` has multiple `Port`s with the same name (which is not
804+
recommended), one target instance per unique port number will be
805+
generated.
806+
800807
It takes precedence over the `portNumber` and `targetPort` fields.
801808
type: string
802809
portNumber:
803-
description: portNumber defines the `Pod` port number which
804-
exposes the endpoint.
810+
description: |-
811+
portNumber defines the `Pod` port number which exposes the endpoint.
812+
813+
The `Pod` must declare the specified `Port` in its spec or the
814+
target will be dropped by Prometheus.
815+
816+
This cannot be used to enable scraping of an undeclared port.
817+
To scrape targets on a port which isn't exposed, you need to use
818+
relabeling to override the `__address__` label (but beware of
819+
duplicate targets if the `Pod` has other declared ports).
820+
821+
In practice Prometheus will select targets for which the
822+
matches the target's __meta_kubernetes_pod_container_port_number.
805823
format: int32
806824
maximum: 65535
807825
minimum: 1
@@ -946,16 +964,12 @@ spec:
946964
type: object
947965
type: array
948966
scheme:
949-
description: |-
950-
scheme defines the HTTP scheme to use for scraping.
951-
952-
`http` and `https` are the expected values unless you rewrite the
953-
`__scheme__` label via relabeling.
954-
955-
If empty, Prometheus uses the default value `http`.
967+
description: scheme defines the HTTP scheme to use for scraping.
956968
enum:
957969
- http
958970
- https
971+
- HTTP
972+
- HTTPS
959973
type: string
960974
scrapeTimeout:
961975
description: |-

charts/prometheus-operator-crds/charts/crds/templates/crd-probes.yaml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.probes.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_probes.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_probes.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: probes.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com
@@ -761,16 +761,22 @@ spec:
761761
pattern: ^(http|https|socks5)://.+$
762762
type: string
763763
scheme:
764-
description: |-
765-
scheme defines the HTTP scheme to use for scraping.
766-
`http` and `https` are the expected values unless you rewrite the `__scheme__` label via relabeling.
767-
If empty, Prometheus uses the default value `http`.
764+
description: scheme defines the HTTP scheme to use when scraping
765+
the prober.
768766
enum:
769767
- http
770768
- https
769+
- HTTP
770+
- HTTPS
771771
type: string
772772
url:
773-
description: url defines the mandatory URL of the prober.
773+
description: |-
774+
url defines the address of the prober.
775+
776+
Unlike what the name indicates, the value should be in the form of
777+
`address:port` without any scheme which should be specified in the
778+
`scheme` field.
779+
minLength: 1
774780
type: string
775781
required:
776782
- url

charts/prometheus-operator-crds/charts/crds/templates/crd-prometheusagents.yaml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.prometheusagents.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_prometheusagents.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheusagents.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: prometheusagents.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com
@@ -5502,11 +5502,12 @@ spec:
55025502
Cannot be set at the same time as `oauth` or `sdk`.
55035503
properties:
55045504
clientId:
5505-
description: clientId defines defines the Azure User-assigned
5506-
Managed identity.
5505+
description: |-
5506+
clientId defines the Azure User-assigned Managed identity.
5507+
5508+
For Prometheus >= 3.5.0 and Thanos >= 0.40.0, this field is allowed to be empty to support system-assigned managed identities.
5509+
minLength: 1
55075510
type: string
5508-
required:
5509-
- clientId
55105511
type: object
55115512
oauth:
55125513
description: |-
@@ -5683,8 +5684,11 @@ spec:
56835684
- V2.0
56845685
type: string
56855686
metadataConfig:
5686-
description: metadataConfig defines how to send a series metadata
5687-
to the remote storage.
5687+
description: |-
5688+
metadataConfig defines how to send a series metadata to the remote storage.
5689+
5690+
When the field is empty, **no metadata** is sent. But when the field is
5691+
null, metadata is sent.
56885692
properties:
56895693
maxSamplesPerSend:
56905694
description: |-
@@ -6256,7 +6260,7 @@ spec:
62566260
x-kubernetes-map-type: atomic
62576261
useFIPSSTSEndpoint:
62586262
description: |-
6259-
useFIPSSTSEndpoint defines FIPS mode for AWS STS endpoint.
6263+
useFIPSSTSEndpoint defines the FIPS mode for the AWS STS endpoint.
62606264
It requires Prometheus >= v2.54.0.
62616265
type: boolean
62626266
type: object

charts/prometheus-operator-crds/charts/crds/templates/crd-prometheuses.yaml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.prometheuses.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_prometheuses.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheuses.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: prometheuses.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com
@@ -1377,6 +1377,7 @@ spec:
13771377
pathPrefix:
13781378
description: pathPrefix defines the prefix for the HTTP
13791379
path alerts are pushed to.
1380+
minLength: 1
13801381
type: string
13811382
port:
13821383
anyOf:
@@ -1517,7 +1518,13 @@ spec:
15171518
type: object
15181519
type: array
15191520
scheme:
1520-
description: scheme to use when firing alerts.
1521+
description: scheme defines the HTTP scheme to use when
1522+
sending alerts.
1523+
enum:
1524+
- http
1525+
- https
1526+
- HTTP
1527+
- HTTPS
15211528
type: string
15221529
sigv4:
15231530
description: |-
@@ -1593,7 +1600,7 @@ spec:
15931600
x-kubernetes-map-type: atomic
15941601
useFIPSSTSEndpoint:
15951602
description: |-
1596-
useFIPSSTSEndpoint defines FIPS mode for AWS STS endpoint.
1603+
useFIPSSTSEndpoint defines the FIPS mode for the AWS STS endpoint.
15971604
It requires Prometheus >= v2.54.0.
15981605
type: boolean
15991606
type: object
@@ -7085,11 +7092,12 @@ spec:
70857092
Cannot be set at the same time as `oauth` or `sdk`.
70867093
properties:
70877094
clientId:
7088-
description: clientId defines defines the Azure User-assigned
7089-
Managed identity.
7095+
description: |-
7096+
clientId defines the Azure User-assigned Managed identity.
7097+
7098+
For Prometheus >= 3.5.0 and Thanos >= 0.40.0, this field is allowed to be empty to support system-assigned managed identities.
7099+
minLength: 1
70907100
type: string
7091-
required:
7092-
- clientId
70937101
type: object
70947102
oauth:
70957103
description: |-
@@ -7266,8 +7274,11 @@ spec:
72667274
- V2.0
72677275
type: string
72687276
metadataConfig:
7269-
description: metadataConfig defines how to send a series metadata
7270-
to the remote storage.
7277+
description: |-
7278+
metadataConfig defines how to send a series metadata to the remote storage.
7279+
7280+
When the field is empty, **no metadata** is sent. But when the field is
7281+
null, metadata is sent.
72717282
properties:
72727283
maxSamplesPerSend:
72737284
description: |-
@@ -7839,7 +7850,7 @@ spec:
78397850
x-kubernetes-map-type: atomic
78407851
useFIPSSTSEndpoint:
78417852
description: |-
7842-
useFIPSSTSEndpoint defines FIPS mode for AWS STS endpoint.
7853+
useFIPSSTSEndpoint defines the FIPS mode for the AWS STS endpoint.
78437854
It requires Prometheus >= v2.54.0.
78447855
type: boolean
78457856
type: object

charts/prometheus-operator-crds/charts/crds/templates/crd-prometheusrules.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.prometheusrules.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_prometheusrules.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheusrules.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: prometheusrules.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com

charts/prometheus-operator-crds/charts/crds/templates/crd-scrapeconfigs.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.scrapeconfigs.enabled -}}
2-
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.86.2/example/prometheus-operator-crd/monitoring.coreos.com_scrapeconfigs.yaml
2+
# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.87.0/example/prometheus-operator-crd/monitoring.coreos.com_scrapeconfigs.yaml
33
---
44
apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
controller-gen.kubebuilder.io/version: v0.19.0
12-
operator.prometheus.io/version: 0.86.2
12+
operator.prometheus.io/version: 0.87.0
1313
name: scrapeconfigs.monitoring.coreos.com
1414
spec:
1515
group: monitoring.coreos.com
@@ -1433,8 +1433,10 @@ spec:
14331433
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
14341434
type: string
14351435
scheme:
1436-
description: scheme defines the HTTP Scheme default "http"
1436+
description: scheme defines the HTTP Scheme.
14371437
enum:
1438+
- http
1439+
- https
14381440
- HTTP
14391441
- HTTPS
14401442
type: string
@@ -12517,10 +12519,10 @@ spec:
1251712519
type: object
1251812520
type: array
1251912521
scheme:
12520-
description: |-
12521-
scheme defines the protocol scheme used for requests.
12522-
If empty, Prometheus uses HTTP by default.
12522+
description: scheme defines the protocol scheme used for requests.
1252312523
enum:
12524+
- http
12525+
- https
1252412526
- HTTP
1252512527
- HTTPS
1252612528
type: string

0 commit comments

Comments
 (0)