k8s-charts/charts/unifi-controller/values.yaml

92 lines
2.3 KiB
YAML
Raw Permalink Normal View History

2023-03-26 20:16:41 +00:00
# Default values for unifi-controller.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
repository: quay.io/linuxserver.io/unifi-controller
pullPolicy: IfNotPresent
2023-04-26 20:44:19 +00:00
# -- Overrides the image tag whose default is the chart appVersion.
2023-03-26 20:16:41 +00:00
tag: ""
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
config:
2023-04-26 20:44:19 +00:00
# -- Timezone - see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
2023-03-26 20:16:41 +00:00
timezone: Etc/UTC
jvmMemory:
2023-04-26 20:44:19 +00:00
# -- Integer value in MB or `default` for startup memory for JVM
2023-03-26 20:16:41 +00:00
startup: default
2023-04-26 20:44:19 +00:00
# -- Integer value in MB or `default` for memory limit for JVM
2023-03-26 20:16:41 +00:00
limit: default
persistence:
enabled: false
existingClaim: ""
annotations: {}
accessMode: ReadWriteOnce
storageClass: ""
size: 1Gi
serviceAccount:
2023-04-26 20:44:19 +00:00
# -- Specifies whether a service account should be created
2023-03-26 20:16:41 +00:00
create: true
2023-04-26 20:44:19 +00:00
# -- Annotations to add to the service account
2023-03-26 20:16:41 +00:00
annotations: {}
2023-04-26 20:44:19 +00:00
# -- The name of the service account to use. If not set and create is true, a name is generated using the fullname template
2023-03-26 20:16:41 +00:00
name: ""
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
2023-04-26 20:44:19 +00:00
# -- Use the same service for TCP and UDP ports - set to disabled if using a LoadBalancer with MetalLB
2023-03-26 20:16:41 +00:00
combinedProtocols: true
annotations: {}
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: unifi-controller.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: unifi-controller-tls
# hosts:
# - unifi-controller.local
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: 400m
# memory: 1Gi
# requests:
# cpu: 200m
# memory: 512Mi
nodeSelector: {}
tolerations: []
affinity: {}