Closed mhutter closed 1 month ago
No matter the version configured, the Prometheus image will always be the same: quay.io/prometheus/prometheus:v2.29.1.
quay.io/prometheus/prometheus:v2.29.1
Given this configuration
parameters: prometheus: instances: some: prometheus: enabled: true config: version: v1.33.7
apiVersion: monitoring.coreos.com/v1 kind: Prometheus # ... spec: image: quay.io/prometheus/prometheus:v2.29.1 version: v1.33.7 # ...
apiVersion: monitoring.coreos.com/v1 kind: Prometheus # ... spec: image: quay.io/prometheus/prometheus:v1.33.7 version: v1.33.7 # ...
Turned out to be PEBCAK. Instead:
parameters: prometheus: instances: some: common: versions: prometheus: 1.33.7
This is the way.
No matter the version configured, the Prometheus image will always be the same:
quay.io/prometheus/prometheus:v2.29.1
.Steps to Reproduce the Problem
Given this configuration
Actual Behavior
Expected Behavior