Skip to content
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
2 changes: 1 addition & 1 deletion charts/gitlab-ci-pipelines-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
apiVersion: v2
name: gitlab-ci-pipelines-exporter
version: 0.3.5
version: 0.3.6
appVersion: v0.5.10
description: Prometheus / OpenMetrics exporter for GitLab CI pipelines insights
home: https://github.com/mvisonneau/gitlab-ci-pipelines-exporter
Expand Down
2 changes: 1 addition & 1 deletion charts/gitlab-ci-pipelines-exporter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gitlab-ci-pipelines-exporter

![Version: 0.3.5](https://img.shields.io/badge/Version-0.3.5-informational?style=flat-square) ![AppVersion: v0.5.10](https://img.shields.io/badge/AppVersion-v0.5.10-informational?style=flat-square)
![Version: 0.3.6](https://img.shields.io/badge/Version-0.3.6-informational?style=flat-square) ![AppVersion: v0.5.10](https://img.shields.io/badge/AppVersion-v0.5.10-informational?style=flat-square)

Prometheus / OpenMetrics exporter for GitLab CI pipelines insights

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ spec:
{{- end }}
envFrom:
- secretRef:
name: {{ template "app.fullname" . }}-config
name: {{ template "app.fullname" . }}-secret
volumeMounts:
- name: config
mountPath: /etc/config.yml
Expand Down
2 changes: 1 addition & 1 deletion charts/gitlab-ci-pipelines-exporter/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v1
kind: Secret
metadata:
name: {{ template "app.fullname" . }}-config
name: {{ template "app.fullname" . }}-secret
labels:
{{- include "app.labels" . | nindent 4 }}
type: Opaque
Expand Down
11 changes: 10 additions & 1 deletion charts/gitlab-ci-pipelines-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ config:
# # Complete configuration syntax reference available here:
# # https://github.com/mvisonneau/gitlab-ci-pipelines-exporter/blob/master/docs/configuration_syntax.md
# gitlab:
# url: https://gitlab.example.com
# url: https://gitlab.example.com/
# token: <your_token>
# enable_health_check: true
# enable_tls_verify: true
Expand Down Expand Up @@ -195,6 +195,15 @@ redis:
persistence:
# redis.master.persistence.enabled -- persist data
enabled: false

# redis.master.resources -- configure redis resources
resources: {}
# requests:
# cpu: 1
# memory: 256Mi
# limits:
# cpu: 2
# memory: 512Mi

## Ingress configuration (useful when looking to expose /webhook endpoint externally)
ingress:
Expand Down