49 lines
1020 B
YAML
49 lines
1020 B
YAML
image:
|
|
repository: tccr.io/truecharts/telepush
|
|
pullPolicy: IfNotPresent
|
|
tag: v4.1.1@sha256:43d1b195c96a73254aaae38efc862b55cfc6ec50d8f098366086076b14890cb2
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
port: 8080
|
|
|
|
telepush:
|
|
# webhook | poll
|
|
mode: webhook
|
|
token: ""
|
|
ratelimit: 100
|
|
cmdratelimit: 10
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/api"
|
|
readiness:
|
|
path: "/api"
|
|
startup:
|
|
path: "/api"
|
|
args:
|
|
- -port
|
|
- "{{ .Values.service.main.ports.main.port }}"
|
|
env:
|
|
APP_MODE: "{{ .Values.telepush.mode }}"
|
|
APP_TOKEN: "{{ .Values.telepush.token }}"
|
|
APP_RATE_LIMIT: "{{ .Values.telepush.ratelimit }}"
|
|
APP_CMD_RATE_LIMIT: "{{ .Values.telepush.cmdratelimit }}"
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/srv/data"
|
|
|
|
portal:
|
|
open:
|
|
enabled: false
|