Skip to content
Merged
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/prometheus-artifactory-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: "1.15.1"
appVersion: "1.16.0"
description: A Helm chart for the Prometheus Artifactory Exporter
name: prometheus-artifactory-exporter
version: 0.8.1
version: 0.9.0
keywords:
- metrics
- artifactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ spec:
args:
- "--log.level={{ .Values.options.logLevel }}"
- "--log.format={{ .Values.options.logFormat }}"
{{- if .Values.options.useCache }}
- "--use-cache"
- "--cache-timeout={{ .Values.options.cacheTimeout | default "30s" }}"
- "--cache-ttl={{ .Values.options.cacheTTL | default "5m"}}"
{{- end }}
{{- range $metric := .Values.options.optionalMetrics }}
- "--optional-metric={{ $metric }}"
{{- end }}
Expand Down
7 changes: 5 additions & 2 deletions charts/prometheus-artifactory-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ image:
registry: ghcr.io
repository: peimanja/artifactory_exporter
# set to canary for the latest unreleased version
tag: v1.15.1
tag: v1.16.0
pullPolicy: IfNotPresent

# imagePullSecrets:
Expand Down Expand Up @@ -51,6 +51,9 @@ options:
telemetryPath: /metrics
verifySSL: false
timeout: 5s
useCache: false
cacheTimeout: 30s
cacheTTL: 5m
# Some metrics are expensive to collect, so they are disabled by default.
# visit https://github.com/peimanja/artifactory_exporter#optional-metrics for more details
optionalMetrics: []
Expand All @@ -77,7 +80,7 @@ ingress:
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# - chart-example.local

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down
Loading