Skip to content

Commit

Permalink
chore: update Prometheus operator to v0.72.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpasquier committed Mar 15, 2024
1 parent 255482d commit e67fa45
Show file tree
Hide file tree
Showing 10 changed files with 693 additions and 160 deletions.
2 changes: 1 addition & 1 deletion jsonnet/jsonnetfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"subdir": "jsonnet/prometheus-operator"
}
},
"version": "release-0.71"
"version": "release-0.72"
},
{
"source": {
Expand Down
6 changes: 3 additions & 3 deletions jsonnet/jsonnetfile.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
"subdir": "jsonnet/mixin"
}
},
"version": "2b9b4f5da49d42313eced5f5abbfcaec44b3903a",
"version": "07e4267d65e59adf503a352a08c6faead527540d",
"sum": "gi+knjdxs2T715iIQIntrimbHRgHnpM8IFBJDD1gYfs=",
"name": "prometheus-operator-mixin"
},
Expand All @@ -182,8 +182,8 @@
"subdir": "jsonnet/prometheus-operator"
}
},
"version": "af2014407bdc25c4fc2b26cd99c9655235ebdf88",
"sum": "NffuiZQnj2s8cBAoLgxQp8Lqlda/HEJPPh9WxyW+4Rg="
"version": "95e0561f60ef7c0dbbb9ed630089d2f26729b70d",
"sum": "SYMnw1FBLZL5URtAUVnvnA1qtcqvG6DLli/gvPM+wmo="
},
{
"source": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
include.release.openshift.io/ibm-cloud-managed: "true"
include.release.openshift.io/self-managed-high-availability: "true"
include.release.openshift.io/single-node-developer: "true"
operator.prometheus.io/version: 0.71.2
operator.prometheus.io/version: 0.72.0
service.beta.openshift.io/inject-cabundle: "true"
labels:
app.kubernetes.io/managed-by: cluster-version-operator
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
include.release.openshift.io/ibm-cloud-managed: "true"
include.release.openshift.io/self-managed-high-availability: "true"
include.release.openshift.io/single-node-developer: "true"
operator.prometheus.io/version: 0.71.2
operator.prometheus.io/version: 0.72.0
labels:
app.kubernetes.io/managed-by: cluster-version-operator
app.kubernetes.io/part-of: openshift-monitoring
Expand Down Expand Up @@ -509,6 +509,22 @@ spec:
description: '`sampleLimit` defines a per-scrape limit on the number of scraped samples that will be accepted.'
format: int64
type: integer
scrapeClass:
description: The scrape class to apply.
minLength: 1
type: string
scrapeProtocols:
description: "`scrapeProtocols` defines the protocols to negotiate during a scrape. It tells clients the protocols supported by Prometheus in order of preference (from most to least preferred). \n If unset, Prometheus uses its default value. \n It requires Prometheus >= v2.49.0."
items:
description: 'ScrapeProtocol represents a protocol used by Prometheus for scraping metrics. Supported values are: * `OpenMetricsText0.0.1` * `OpenMetricsText1.0.0` * `PrometheusProto` * `PrometheusText0.0.4`'
enum:
- PrometheusProto
- OpenMetricsText0.0.1
- OpenMetricsText1.0.0
- PrometheusText0.0.4
type: string
type: array
x-kubernetes-list-type: set
selector:
description: Label selector to select the Kubernetes `Pod` objects.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
include.release.openshift.io/ibm-cloud-managed: "true"
include.release.openshift.io/self-managed-high-availability: "true"
include.release.openshift.io/single-node-developer: "true"
operator.prometheus.io/version: 0.71.2
operator.prometheus.io/version: 0.72.0
labels:
app.kubernetes.io/managed-by: cluster-version-operator
app.kubernetes.io/part-of: openshift-monitoring
Expand Down Expand Up @@ -298,6 +298,22 @@ spec:
description: SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.
format: int64
type: integer
scrapeClass:
description: The scrape class to apply.
minLength: 1
type: string
scrapeProtocols:
description: "`scrapeProtocols` defines the protocols to negotiate during a scrape. It tells clients the protocols supported by Prometheus in order of preference (from most to least preferred). \n If unset, Prometheus uses its default value. \n It requires Prometheus >= v2.49.0."
items:
description: 'ScrapeProtocol represents a protocol used by Prometheus for scraping metrics. Supported values are: * `OpenMetricsText0.0.1` * `OpenMetricsText1.0.0` * `PrometheusProto` * `PrometheusText0.0.4`'
enum:
- PrometheusProto
- OpenMetricsText0.0.1
- OpenMetricsText1.0.0
- PrometheusText0.0.4
type: string
type: array
x-kubernetes-list-type: set
scrapeTimeout:
description: Timeout for scraping metrics from the Prometheus exporter. If not specified, the Prometheus global scrape timeout is used.
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
Expand Down

0 comments on commit e67fa45

Please sign in to comment.