65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: joni1802/ts3-manager
|
|
tag: v2.2.0@sha256:44caf39f0bdad9d0aebfd1014e9b57fe6ce119c6aee07bc6e742f2fe37c8aa29
|
|
portal:
|
|
open:
|
|
enabled: true
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10284
|
|
protocol: http
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
JWT_SECRET: changeme
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
probes:
|
|
liveness:
|
|
custom: true
|
|
enabled: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- wget --spider localhost:10284
|
|
failureThreshold: 5
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 10
|
|
readiness:
|
|
custom: true
|
|
enabled: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- wget --spider localhost:10284
|
|
failureThreshold: 5
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 10
|
|
startup:
|
|
custom: true
|
|
enabled: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- wget --spider localhost:10284
|
|
failureThreshold: 5
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 10
|