Files
truecharts/charts/stable/unifi/values.yaml
T
Kjeld Schouten-LebbingandGitHub 8a24c8721f Correct targetPort and always use PVC during testing (#840)
* Fix targetPort not being processed correctly

* Always use PVC in values.yaml just to be sure it actually works

* fix a small copy-paste mistake

* bump

* fix hyperion-ng mistake
2021-08-29 14:02:17 +02:00

51 lines
775 B
YAML

# Default values for Unifi.
image:
repository: jacobalberty/unifi
tag: v6.2.26
pullPolicy: IfNotPresent
strategy:
type: Recreate
envTpl:
# Permissions Settings
UNIFI_GID: "{{ .Values.env.PUID }}"
UNIFI_UID: "{{ .Values.env.PGID }}"
service:
main:
ports:
main:
protocol: HTTPS
port: 8443
comm:
enabled: true
ports:
tcp:
enabled: true
port: 8080
targetPort: 8080
protocol: TCP
stun:
enabled: true
ports:
udp:
enabled: true
port: 3478
targetPort: 3478
protocol: UDP
env:
# TZ:
PUID: "568"
PGID: "568"
persistence:
config:
enabled: true
mountPath: "/unifi"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"