influxdb/charts/nebulous-influxdb/values.yaml
jmarchel 8cdcecb794 Add proper port to values.yaml
Change-Id: I01b7c3d9121161393e7fdf3f404c946253009858
2024-01-24 16:03:56 +01:00

102 lines
2.1 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: 8086
# 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: {}
influxdbSetup:
DOCKER_INFLUXDB_INIT_MODE: "setup"
DOCKER_INFLUXDB_INIT_USERNAME: "my-user"
DOCKER_INFLUXDB_INIT_ORG: "my-org"
DOCKER_INFLUXDB_INIT_BUCKET: "my-bucket"
DOCKER_INFLUXDB_INIT_RETENTION: "1w"
secrets:
DOCKER_INFLUXDB_INIT_PASSWORD: "my-password"
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: "my-super-secret-auth-token"