mirror of
https://github.com/nikdoof/helm-charts.git
synced 2025-12-24 07:09:30 +00:00
[vmware-exporter] New Chart (#32)
* [vmware-exporter] New Chart * Update repo README
This commit is contained in:
66
charts/vmware-exporter/values.yaml
Normal file
66
charts/vmware-exporter/values.yaml
Normal file
@@ -0,0 +1,66 @@
|
||||
#
|
||||
# IMPORTANT NOTE
|
||||
#
|
||||
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
||||
#
|
||||
|
||||
image:
|
||||
# -- image repository
|
||||
repository: pryorda/vmware_exporter
|
||||
# -- image tag
|
||||
tag: v0.18.2
|
||||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# -- environment variables. See more environment variables in the [vmware-exporter documentation](https://github.com/pryorda/vmware_exporter).
|
||||
# @default -- See below
|
||||
env:
|
||||
VSPHERE_IGNORE_SSL: "True"
|
||||
VSPHERE_COLLECT_HOSTS: "True"
|
||||
VSPHERE_COLLECT_DATASTORES: "True"
|
||||
VSPHERE_COLLECT_VMS: "True"
|
||||
|
||||
# -- Configures service settings for the chart.
|
||||
# @default -- See values.yaml
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
http:
|
||||
enabled: false
|
||||
metrics:
|
||||
enabled: true
|
||||
protocol: TCP
|
||||
port: 9272
|
||||
|
||||
ingress:
|
||||
# -- Enable and configure ingress settings for the chart under this key.
|
||||
# @default -- See values.yaml
|
||||
main:
|
||||
enabled: false
|
||||
|
||||
metrics:
|
||||
# -- Enable and configure a Prometheus serviceMonitor for the chart under this key.
|
||||
# @default -- See values.yaml
|
||||
enabled: false
|
||||
serviceMonitor:
|
||||
interval: 1m
|
||||
scrapeTimeout: 30s
|
||||
labels: {}
|
||||
# -- Enable and configure Prometheus Rules for the chart under this key.
|
||||
# @default -- See values.yaml
|
||||
prometheusRule:
|
||||
enabled: false
|
||||
labels: {}
|
||||
# -- Configure additionial rules for the chart under this key.
|
||||
# @default -- See prometheusrules.yaml
|
||||
rules: []
|
||||
# - alert: vmwareExporterAbsent
|
||||
# annotations:
|
||||
# description: vmware Exporter has disappeared from Prometheus service discovery.
|
||||
# summary: vmware Exporter is down.
|
||||
# expr: |
|
||||
# absent(up{job=~".*vmwareexporter.*"} == 1)
|
||||
# for: 5m
|
||||
# labels:
|
||||
# severity: critical
|
||||
Reference in New Issue
Block a user