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-artifactory-exporter] Add option to configure JFrog Access Federation validation through Helm #24

Merged
merged 4 commits into from
Jan 21, 2025
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.14.0"
appVersion: "1.15.0"
description: A Helm chart for the Prometheus Artifactory Exporter
name: prometheus-artifactory-exporter
version: 0.6.4
version: 0.7.0
keywords:
- metrics
- artifactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ spec:
value: {{ .Values.options.verifySSL | quote }}
- name: ARTI_TIMEOUT
value: {{ .Values.options.timeout| quote }}
- name: ACCESS_FEDERATION_TARGET
value: {{ .Values.options.accessFederationTarget | quote }}
envFrom:
- secretRef:
name: {{ template "prometheus-artifactory-exporter.secret" . }}
Expand Down
2 changes: 2 additions & 0 deletions charts/prometheus-artifactory-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ options:
# - replication_status # adds the `status` label to `artifactory_replication_enabled` metric
# - federation_status # enables `artifactory_federation_*` metrics
# - open_metrics # exposes pen Metrics from the JFrog Platform
# - access_federation_validate # enables JFrog Access Federation validation status metric
accessFederationTarget: ""

service:
type: ClusterIP
Expand Down
Loading