-
Notifications
You must be signed in to change notification settings - Fork 186
Istio prow: upgrade prometheus operator from 0.29.0 to 0.45.0 #3225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
istio-testing
merged 1 commit into
istio:master
from
chaodaiG:bump-istio-prow-prometheus-operator
Mar 19, 2021
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| The CRDs under current directory are copy/pasted from [HEAD of release-0.45 | ||
| branch on | ||
| 03/18/2021](https://github.com/prometheus-operator/prometheus-operator/blob/5555f492df250168657b72bb8cb60bec071de71f/example/prometheus-operator-crd). | ||
|
|
||
| Please make sure update this doc when updating CRDs. |
1,866 changes: 1,866 additions & 0 deletions
1,866
...luster/monitoring/prometheus-operator-crds/monitoring.coreos.com_alertmanagerconfigs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
3,215 changes: 3,215 additions & 0 deletions
3,215
prow/cluster/monitoring/prometheus-operator-crds/monitoring.coreos.com_alertmanagers.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
355 changes: 355 additions & 0 deletions
355
prow/cluster/monitoring/prometheus-operator-crds/monitoring.coreos.com_podmonitors.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
168 changes: 168 additions & 0 deletions
168
prow/cluster/monitoring/prometheus-operator-crds/monitoring.coreos.com_probes.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,168 @@ | ||
|
|
||
| --- | ||
| apiVersion: apiextensions.k8s.io/v1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| annotations: | ||
| controller-gen.kubebuilder.io/version: v0.4.1 | ||
| creationTimestamp: null | ||
| name: probes.monitoring.coreos.com | ||
| spec: | ||
| group: monitoring.coreos.com | ||
| names: | ||
| kind: Probe | ||
| listKind: ProbeList | ||
| plural: probes | ||
| singular: probe | ||
| scope: Namespaced | ||
| versions: | ||
| - name: v1 | ||
| schema: | ||
| openAPIV3Schema: | ||
| description: Probe defines monitoring for a set of static targets or ingresses. | ||
| properties: | ||
| apiVersion: | ||
| description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
| type: string | ||
| kind: | ||
| description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
| type: string | ||
| metadata: | ||
| type: object | ||
| spec: | ||
| description: Specification of desired Ingress selection for target discovery by Prometheus. | ||
| properties: | ||
| interval: | ||
| description: Interval at which targets are probed using the configured prober. If not specified Prometheus' global scrape interval is used. | ||
| type: string | ||
| jobName: | ||
| description: The job name assigned to scraped metrics by default. | ||
| type: string | ||
| module: | ||
| description: 'The module to use for probing specifying how to probe the target. Example module configuring in the blackbox exporter: https://github.com/prometheus/blackbox_exporter/blob/master/example.yml' | ||
| type: string | ||
| prober: | ||
| description: Specification for the prober to use for probing targets. The prober.URL parameter is required. Targets cannot be probed if left empty. | ||
| properties: | ||
| path: | ||
| description: Path to collect metrics from. Defaults to `/probe`. | ||
| type: string | ||
| scheme: | ||
| description: HTTP scheme to use for scraping. Defaults to `http`. | ||
| type: string | ||
| url: | ||
| description: Mandatory URL of the prober. | ||
| type: string | ||
| required: | ||
| - url | ||
| type: object | ||
| scrapeTimeout: | ||
| description: Timeout for scraping metrics from the Prometheus exporter. | ||
| type: string | ||
| targets: | ||
| description: Targets defines a set of static and/or dynamically discovered targets to be probed using the prober. | ||
| properties: | ||
| ingress: | ||
| description: Ingress defines the set of dynamically discovered ingress objects which hosts are considered for probing. | ||
| properties: | ||
| namespaceSelector: | ||
| description: Select Ingress objects by namespace. | ||
| properties: | ||
| any: | ||
| description: Boolean describing whether all namespaces are selected in contrast to a list restricting them. | ||
| type: boolean | ||
| matchNames: | ||
| description: List of namespace names. | ||
| items: | ||
| type: string | ||
| type: array | ||
| type: object | ||
| relabelingConfigs: | ||
| description: 'RelabelConfigs to apply to samples before ingestion. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config' | ||
| items: | ||
| description: 'RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion. It defines `<metric_relabel_configs>`-section of Prometheus configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' | ||
| properties: | ||
| action: | ||
| description: Action to perform based on regex matching. Default is 'replace' | ||
| type: string | ||
| modulus: | ||
| description: Modulus to take of the hash of the source label values. | ||
| format: int64 | ||
| type: integer | ||
| regex: | ||
| description: Regular expression against which the extracted value is matched. Default is '(.*)' | ||
| type: string | ||
| replacement: | ||
| description: Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available. Default is '$1' | ||
| type: string | ||
| separator: | ||
| description: Separator placed between concatenated source label values. default is ';'. | ||
| type: string | ||
| sourceLabels: | ||
| description: The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions. | ||
| items: | ||
| type: string | ||
| type: array | ||
| targetLabel: | ||
| description: Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available. | ||
| type: string | ||
| type: object | ||
| type: array | ||
| selector: | ||
| description: Select Ingress objects by labels. | ||
| properties: | ||
| matchExpressions: | ||
| description: matchExpressions is a list of label selector requirements. The requirements are ANDed. | ||
| items: | ||
| description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. | ||
| properties: | ||
| key: | ||
| description: key is the label key that the selector applies to. | ||
| type: string | ||
| operator: | ||
| description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. | ||
| type: string | ||
| values: | ||
| description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. | ||
| items: | ||
| type: string | ||
| type: array | ||
| required: | ||
| - key | ||
| - operator | ||
| type: object | ||
| type: array | ||
| matchLabels: | ||
| additionalProperties: | ||
| type: string | ||
| description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. | ||
| type: object | ||
| type: object | ||
| type: object | ||
| staticConfig: | ||
| description: 'StaticConfig defines static targets which are considers for probing. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config.' | ||
| properties: | ||
| labels: | ||
| additionalProperties: | ||
| type: string | ||
| description: Labels assigned to all metrics scraped from the targets. | ||
| type: object | ||
| static: | ||
| description: Targets is a list of URLs to probe using the configured prober. | ||
| items: | ||
| type: string | ||
| type: array | ||
| type: object | ||
| type: object | ||
| type: object | ||
| required: | ||
| - spec | ||
| type: object | ||
| served: true | ||
| storage: true | ||
| status: | ||
| acceptedNames: | ||
| kind: "" | ||
| plural: "" | ||
| conditions: [] | ||
| storedVersions: [] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI CRDs are cluster scoped so
-n prow-monitoringdoesn't make a difference here. Shouldn't hurt though.