1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-20 19:29:10 +00:00

Update Prometheus to 2.2.1

This commit is contained in:
Laurent Godet 2018-03-09 15:03:48 +00:00
parent bec436c85c
commit b71f50903f
No known key found for this signature in database
GPG key ID: 7439F8944DA8413A
9 changed files with 10 additions and 8 deletions
Documentation
contrib/kube-prometheus/manifests/prometheus
helm
pkg/prometheus

View file

@ -32,3 +32,4 @@ The versions of Prometheus compatible to be run with the Prometheus Operator are
* v1.7.2
* v1.8.0
* v2.0.0
* v2.2.1

View file

@ -357,7 +357,7 @@ metadata:
prometheus: k8s
spec:
replicas: 2
version: v2.2.0-rc.1
version: v2.2.1
serviceAccountName: prometheus-k8s
serviceMonitorSelector:
matchExpressions:

View file

@ -6,7 +6,7 @@ metadata:
prometheus: k8s
spec:
replicas: 2
version: v2.2.0-rc.1
version: v2.2.1
serviceAccountName: prometheus-k8s
serviceMonitorSelector:
matchExpressions:

View file

@ -9,4 +9,4 @@ maintainers:
name: kube-prometheus
sources:
- https://github.com/coreos/prometheus-operator
version: 0.0.29
version: 0.0.31

View file

@ -6,7 +6,7 @@ dependencies:
condition: deployAlertManager
- name: prometheus
version: 0.0.20
version: 0.0.21
#e2e-repository: file://../prometheus
repository: https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/

View file

@ -160,7 +160,7 @@ prometheus:
##
image:
repository: quay.io/prometheus/prometheus
tag: v2.1.0
tag: v2.2.1
ingress:
## If true, Prometheus Ingress will be created

View file

@ -7,4 +7,4 @@ maintainers:
name: prometheus
sources:
- https://github.com/coreos/prometheus-operator
version: 0.0.20
version: 0.0.21

View file

@ -31,7 +31,7 @@ selfServiceMonitor: true
##
image:
repository: quay.io/prometheus/prometheus
tag: v2.1.0
tag: v2.2.1
## Labels to be added to the Prometheus
##

View file

@ -37,7 +37,7 @@ import (
const (
governingServiceName = "prometheus-operated"
DefaultVersion = "v2.2.0-rc.1"
DefaultVersion = "v2.2.1"
defaultRetention = "24h"
configMapsFilename = "configmaps.json"
prometheusConfDir = "/etc/prometheus/config"
@ -72,6 +72,7 @@ var (
"v1.7.2",
"v1.8.0",
"v2.0.0",
"v2.2.1",
}
)