Skip to content
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

[prometheus-rabbitmq-exporter] upgrade to 1.0.0 #5100

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions charts/prometheus-rabbitmq-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
apiVersion: v1
description: Rabbitmq metrics exporter for prometheus
name: prometheus-rabbitmq-exporter
version: 1.12.1
appVersion: v0.29.0
version: 2.0.0
appVersion: 1.0.0
home: https://github.com/kbudde/rabbitmq_exporter
sources:
- https://github.com/kbudde/rabbitmq_exporter
- https://github.com/kbudde/rabbitmq_exporter
maintainers:
- name: desaintmartin
email: [email protected]
- name: iamabhishek-dubey
email: [email protected]
- name: juanchimienti
email: [email protected]
- name: monotek
email: [email protected]
- name: desaintmartin
email: [email protected]
- name: iamabhishek-dubey
email: [email protected]
- name: juanchimienti
email: [email protected]
- name: monotek
email: [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Default chart values
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
serviceAccountName: {{ template "prometheus-rabbitmq-exporter.serviceAccountName" . }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
envFrom:
- configMapRef:
Expand Down
2 changes: 1 addition & 1 deletion charts/prometheus-rabbitmq-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
replicaCount: 1
image:
repository: kbudde/rabbitmq-exporter
tag: v0.29.0
tag: ""
pullPolicy: IfNotPresent
pullSecrets: []

Expand Down
Loading