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
4 changes: 2 additions & 2 deletions 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 All @@ -12,6 +12,6 @@ maintainers:
email: maxime.visonneau@gmail.com
dependencies:
- name: redis
version: 20.4.0
version: 23.0.2
repository: https://charts.bitnami.com/bitnami
condition: redis.enabled
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
22 changes: 22 additions & 0 deletions charts/gitlab-ci-pipelines-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ serviceMonitor:
## Spin up a redis pod using the bitnami chart
## https://github.com/bitnami/charts/blob/master/bitnami/redis
redis:

global:
security:
## @param global.security.allowInsecureImages Allows skipping image verification
allowInsecureImages: true

# redis.enabled -- deploy a redis statefulset
enabled: true

Expand All @@ -195,6 +201,22 @@ redis:
persistence:
# redis.master.persistence.enabled -- persist data
enabled: false
image:
# image.repository -- image repository
# registry: docker.io

repository: bitnamilegacy/redis

# image.tag -- image tag
# tag: <default to chart version>

# image.pullPolicy -- image pullPolicy
# pullPolicy: IfNotPresent

# image.pullSecrets -- Optional array of imagePullSecrets containing private registry credentials
# Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
pullSecrets: []
# - name: secretName

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