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 all 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.13.0
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]
4 changes: 4 additions & 0 deletions charts/prometheus-rabbitmq-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ $ helm upgrade [RELEASE_NAME] [CHART] --install

_See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documentation._

### To 2.0.0

From 2.0.0 redis exporter is using the prometheus-rabbit-exporter image 1.0.0.

## Configuration

See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with detailed comments, visit the chart's [values.yaml](./values.yaml), or run these configuration commands:
Expand Down
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