TrueChartsCatalogClone/incubator/ts3-manager/0.0.2/ix_values.yaml

62 lines
1.2 KiB
YAML

image:
repository: tccr.io/truecharts/ts3-manager
pullPolicy: IfNotPresent
tag: v2.2.0@sha256:64998a18482fa9646d7250d52e1b1a66095a9806273ecf6da9e91b981414f6a5
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
secretEnv:
JWT_SECRET: "changeme"
probes:
liveness:
enabled: true
custom: true
spec:
exec:
command:
- /bin/sh
- -c
- wget --spider localhost:10284
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
readiness:
enabled: true
custom: true
spec:
exec:
command:
- /bin/sh
- -c
- wget --spider localhost:10284
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
startup:
enabled: true
custom: true
spec:
exec:
command:
- /bin/sh
- -c
- wget --spider localhost:10284
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
service:
main:
ports:
main:
protocol: HTTP
port: 10284