32 lines
694 B
YAML
32 lines
694 B
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/privoce/vocechat-server
|
|
pullPolicy: IfNotPresent
|
|
tag: v0.5.15@sha256:be47a113e110d161b921ccc1f1ebaa641d4a589ccd8083729c98c3349092d5de
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
port: 3009
|
|
|
|
vocechat:
|
|
frontend_url: localhost:3009
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
args:
|
|
- --network.bind
|
|
- 0.0.0.0:{{ .Values.service.main.ports.main.port }}
|
|
- --network.frontend_url
|
|
- "{{ .Values.vocechat.frontend_url }}"
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/home/vocechat-server/data"
|