63 lines
1.1 KiB
YAML
63 lines
1.1 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/xenorchestra
|
|
tag: 5.103.1@sha256:874cedb85cace7dbf3f4500c4590deffde440d7638ae4fa373d969b4e31398b6
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
capabilities:
|
|
add:
|
|
- SYS_ADMIN
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
env:
|
|
HTTPS_PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
# Just so it doesn't try to bind port 80
|
|
HTTP_PORT: "{{ add1 .Values.service.main.ports.main.port }}"
|
|
REDIRECT_TO_HTTPS: true
|
|
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /healthcheck.sh
|
|
readiness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /healthcheck.sh
|
|
startup:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /healthcheck.sh
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
procotol: HTTPS
|
|
port: 10324
|
|
|
|
persistence:
|
|
xo-data:
|
|
enabled: true
|
|
mountPath: "/var/lib/xo-server"
|
|
redis-data:
|
|
enabled: true
|
|
mountPath: "/var/lib/redis"
|
|
|
|
portal:
|
|
enabled: true
|