* homebridge -> helm-docs * librespeed -> helmdocs * node-feature-discovery -> helm-docs * oauth2-proxy -> helm-docs * sersock -> helmdocs * speedtest -> helm-docs * unifi -> helm-docs * bump version * uptimerobot -> helm-docs * do not install test ser2sock * Add influxdb dependency * no default value for externalTrafficPolicy Co-authored-by: angelnu <git@angelnucom>
124 lines
3.3 KiB
YAML
124 lines
3.3 KiB
YAML
# Default values for librespeed
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
# -- Specifies the strategy used to replace old Pods by new ones
|
|
strategyType: Recreate
|
|
|
|
image:
|
|
# -- Librespeed image
|
|
repository: adolfintel/speedtest
|
|
# -- Librespeed image tag
|
|
tag: latest
|
|
# -- Librespeed image pull policy
|
|
pullPolicy: IfNotPresent
|
|
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
# -- Default livenessProbe path
|
|
livenessProbePath: /
|
|
# -- Default readinessProbe path
|
|
readinessProbePath: /
|
|
|
|
# -- Default timezone
|
|
timezone: "UTC"
|
|
# -- Default UID
|
|
puid: "1000"
|
|
# -- Default GID
|
|
pgid: "1000"
|
|
|
|
# -- Enable/Disable history
|
|
telemetry: false
|
|
# -- password for stats page
|
|
password: "ChangeMe"
|
|
# -- (string) Email address for GDPR requests. Must be specified when telemetry=true
|
|
email:
|
|
|
|
# -- Title of your speedtest
|
|
title: LibreSpeed
|
|
# -- Test IDs are obfuscated, avoids exposing database internal sequential IDs
|
|
idObfuscation: false
|
|
# -- IP addresses/hostnames are redacted from the collected telemetry
|
|
redactIPAddresses: false
|
|
# -- how the distance from the server is measured. Options `km`, `mi`, or ``
|
|
distance: "km"
|
|
|
|
|
|
service:
|
|
# -- Kubernetes service type for the GUI
|
|
type: ClusterIP
|
|
# -- Kubernetes port where the GUI is exposed
|
|
port: 80
|
|
# -- (int) Kubernetes nodePort where the GUI is exposed
|
|
nodePort:
|
|
# -- Service annotations for the GUI
|
|
annotations: {}
|
|
# -- Custom labels
|
|
labels: {}
|
|
# -- (string) Loadbalance IP for the GUI
|
|
loadBalancerIP:
|
|
# -- (list) List of IP CIDRs allowed access to load balancer (if supported)
|
|
loadBalancerSourceRanges:
|
|
# -- Set the externalTrafficPolicy in the Service to either Cluster or Local
|
|
externalTrafficPolicy:
|
|
|
|
ingress:
|
|
# -- Enables Ingress
|
|
enabled: false
|
|
# -- Ingress annotations
|
|
annotations: {}
|
|
# -- Ingress path
|
|
path: /
|
|
# -- Ingress accepted hostnames
|
|
hosts:
|
|
- chart-example.local
|
|
# -- Ingress TLS configuration
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
|
|
persistence:
|
|
# -- Use persistent volume to store data
|
|
enabled: false
|
|
# -- (string) Type of persistent volume claim
|
|
storageClass:
|
|
# -- (string) Use an existing PVC to persist data
|
|
existingClaim:
|
|
# -- Persistence access modes
|
|
accessMode: ReadWriteOnce
|
|
# -- Size of persistent volume claim
|
|
size: 1Gi
|
|
# -- Do not delete the pvc upon helm uninstall
|
|
skipuninstall: false
|
|
# -- (string) When mounting the data volume you may specify a subPath
|
|
subPath:
|
|
# -- CPU/Memory resource requests/limits or the homebridge GUI
|
|
resources: {}
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
# -- Node labels for pod assignment or the homebridge GUI
|
|
nodeSelector: {}
|
|
|
|
# -- Toleration labels for pod assignment or the homebridge GUI
|
|
tolerations: []
|
|
|
|
# -- Affinity settings for pod assignment or the homebridge GUI
|
|
affinity: {}
|
|
|
|
# -- Key-value pairs to add as pod annotations
|
|
podAnnotations: {}
|
|
|
|
# -- Key-value pairs to add as deployment annotations
|
|
deploymentAnnotations: {}
|