image: repository: tccr.io/truecharts/kitchenowl-web pullPolicy: IfNotPresent tag: latest@sha256:eff15b745cb2589c3ce0d0ba6a30ba0d949c298f7cedf5b4214b4a4fedb424a6 backendImage: repository: tccr.io/truecharts/kitchenowl-backend pullPolicy: IfNotPresent tag: latest@sha256:903c6339426e0fe7d96245b477b9706db58b27e4851d92f92164e305bd8cd56d service: main: ports: main: protocol: http targetPort: 80 port: 10246 additionalContainers: backend: name: backend image: "{{ .Values.backendImage.repository }}:{{ .Values.backendImage.tag }}" env: - name: FRONT_URL value: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}" # Backend also listens on 80, but afaik there is no use as of now # Changed port to 81 to avoid conflict with frontend - name: HTTP_PORT value: "81" - name: JWT_SECRET_KEY valueFrom: secretKeyRef: name: kitchenowl-secrets key: JWT_SECRET_KEY volumeMounts: - name: data mountPath: "/data" persistence: data: enabled: true mountPath: "/data" portal: open: enabled: true securityContext: container: readOnlyRootFilesystem: false runAsNonRoot: false runAsUser: 0 runAsGroup: 0 workload: main: podSpec: containers: main: env: FRONT_URL: "http://localhost:10246" # Backend listens on 5000 websockets. BACK_URL: "localhost:5000"