5c1169c88a
Change-Id: I281b5e4f7a59e8fade59a9f63cb4f7449768cfb5
92 lines
1.8 KiB
YAML
92 lines
1.8 KiB
YAML
# Default values for nebulous-influxdb.
|
|
|
|
# Number of replicas
|
|
replicaCount: 1
|
|
|
|
# Image configurations
|
|
image:
|
|
repository: "quay.io/nebulous/influxdb"
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: ""
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
# InfluxDB specific configurations
|
|
config:
|
|
httpAuthEnabled: "true" # Set true or false
|
|
adminUser: "admin"
|
|
|
|
# Service Account configurations
|
|
serviceAccount:
|
|
# Specifies whether a service account should be created
|
|
create: true
|
|
# Annotations to add to the service account
|
|
annotations: {}
|
|
# The name of the service account to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name: ""
|
|
|
|
# Pod configurations
|
|
podAnnotations: {}
|
|
|
|
podSecurityContext: {}
|
|
# fsGroup: 2000
|
|
|
|
securityContext: {}
|
|
# capabilities:
|
|
# drop:
|
|
# - ALL
|
|
# readOnlyRootFilesystem: true
|
|
# runAsNonRoot: true
|
|
# runAsUser: 1000
|
|
|
|
# Service settings
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
|
|
# Ingress configurations
|
|
ingress:
|
|
enabled: false
|
|
className: ""
|
|
annotations: {}
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
hosts:
|
|
- host: chart-example.local
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
|
|
# Resource allocation for pods
|
|
resources:
|
|
# limits and requests for CPU and memory
|
|
limits:
|
|
cpu: "500m"
|
|
memory: "1Gi"
|
|
requests:
|
|
cpu: "250m"
|
|
memory: "512Mi"
|
|
|
|
# Autoscaling configurations
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
# Node selector, tolerations, and affinity settings
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|