1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-21 11:48:53 +00:00

update default image versions

Prometheus image should default to latest version in compatibility
matrix.  Also updates Alertmanager and Thanos to latest stable versions.
This commit is contained in:
Paul Gier 2020-02-04 10:47:22 -06:00
parent e36b013401
commit c23ca4aa93
3 changed files with 4 additions and 4 deletions
pkg
alertmanager
prometheus
thanos

View file

@ -36,7 +36,7 @@ const (
governingServiceName = "alertmanager-operated"
// DefaultVersion specifies which version of Alertmanager the Prometheus
// Operator uses by default.
DefaultVersion = "v0.17.0"
DefaultVersion = "v0.20.0"
defaultRetention = "120h"
secretsDir = "/etc/alertmanager/secrets/"
configmapsDir = "/etc/alertmanager/configmaps/"

View file

@ -34,8 +34,7 @@ import (
const (
governingServiceName = "prometheus-operated"
DefaultPrometheusVersion = "v2.7.1"
DefaultThanosVersion = "v0.8.1"
DefaultThanosVersion = "v0.10.1"
defaultRetention = "24h"
defaultReplicaExternalLabelName = "prometheus_replica"
storageDir = "/prometheus"
@ -97,6 +96,7 @@ var (
"v2.14.0",
"v2.15.2",
}
DefaultPrometheusVersion = CompatibilityMatrix[len(CompatibilityMatrix)-1]
)
func makeStatefulSet(

View file

@ -31,7 +31,7 @@ import (
)
const (
DefaultThanosVersion = "v0.10.0"
DefaultThanosVersion = "v0.10.1"
rulesDir = "/etc/thanos/rules"
storageDir = "/thanos/data"
governingServiceName = "thanos-ruler-operated"