Skip to content

Commit

Permalink
Merge branch 'main' into json-exporter-add-action-replace
Browse files Browse the repository at this point in the history
  • Loading branch information
zanhsieh committed Jun 8, 2024
2 parents 687e9a3 + 782a331 commit 317e17a
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/kube-prometheus-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ name: kube-prometheus-stack
sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
version: 60.0.0
version: 60.0.1
appVersion: v0.74.0
kubeVersion: ">=1.19.0-0"
home: https://github.com/prometheus-operator/kube-prometheus
Expand Down
4 changes: 2 additions & 2 deletions charts/kube-prometheus-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2862,7 +2862,7 @@ prometheusOperator:
thanosImage:
registry: quay.io
repository: thanos/thanos
tag: v0.35.0
tag: v0.35.1
sha: ""

## Set a Label Selector to filter watched prometheus and prometheusAgent
Expand Down Expand Up @@ -4424,7 +4424,7 @@ thanosRuler:
image:
registry: quay.io
repository: thanos/thanos
tag: v0.35.0
tag: v0.35.1
sha: ""

## Namespaces to be selected for PrometheusRules discovery.
Expand Down
2 changes: 1 addition & 1 deletion charts/kube-state-metrics/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- prometheus
- kubernetes
type: application
version: 5.19.1
version: 5.20.0
appVersion: 2.12.0
home: https://github.com/kubernetes/kube-state-metrics/
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/kube-state-metrics/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ kubeRBACProxy:
image:
registry: quay.io
repository: brancz/kube-rbac-proxy
tag: v0.16.0
tag: v0.18.0
sha: ""
pullPolicy: IfNotPresent

Expand Down
2 changes: 1 addition & 1 deletion charts/prometheus-ipmi-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: This is an IPMI exporter for Prometheus.

type: application

version: 0.3.0
version: 0.4.0

appVersion: "v1.8.0"

Expand Down
2 changes: 1 addition & 1 deletion charts/prometheus-ipmi-exporter/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if not .Values.configMapFile -}}
{{- if not .Values.configSecret.enabled -}}
{{- $fullName := include "prometheus-ipmi-exporter.fullname" . -}}
apiVersion: v1
kind: ConfigMap
Expand Down
8 changes: 8 additions & 0 deletions charts/prometheus-ipmi-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,16 @@ spec:
memory: {{ .Values.resources.requests.memory }}
volumes:
- name: config-volume
{{- if .Values.configSecret.enabled }}
secret:
secretName: {{ .Values.configSecret.name }}
items:
- key: {{ .Values.configSecret.key }}
path: config.yml
{{- else }}
configMap:
name: {{ template "prometheus-ipmi-exporter.fullname" . }}
{{- end }}
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
5 changes: 5 additions & 0 deletions charts/prometheus-ipmi-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ serviceMonitor:

# Configuration file for ipmi_exporter

configSecret:
enabled: false
name: ipmi-secret
key: config.yml

# This is an example config for scraping remote hosts via IPMI.
# Information required to access remote IPMI interfaces can be supplied in the
# 'modules' section. A scrape can request the usage of a given config by
Expand Down
4 changes: 2 additions & 2 deletions charts/prometheus-operator-admission-webhook/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
apiVersion: v2
description: Prometheus Operator Admission Webhook
name: prometheus-operator-admission-webhook
version: 0.12.0
appVersion: 0.73.0
version: 0.13.0
appVersion: 0.74.0
home: https://github.com/prometheus-operator/prometheus-operator
icon: https://github.com/prometheus-operator/prometheus-operator/raw/main/Documentation/logos/prometheus-operator-logo.png
keywords:
Expand Down

0 comments on commit 317e17a

Please sign in to comment.