Skip to content

Commit f43983d

Browse files
committed
fix: add correct service name
1 parent ecfa2f7 commit f43983d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/textbee/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ name: textbee
33
description: A Helm chart to deploy TextBee.
44
type: application
55

6-
version: 0.1.8
6+
version: 0.1.9
77

88
appVersion: "v2.6.2"

charts/textbee/templates/api-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
value: "{{ .Values.api.service.port }}"
3030
{{- if .Values.web.enabled }}
3131
- name: FRONTEND_URL
32-
value: "http://{{ include "textbee.fullname" .}}-web:{{ .Values.web.service.port }}"
32+
value: "http://svc-{{ include "textbee.fullname" .}}-web:{{ .Values.web.service.port }}"
3333
{{- end}}
3434
{{- if .Values.api.redis.enabled }}
3535
- name: REDIS_URL

charts/textbee/templates/web-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- name: PORT
3232
value: "{{ .Values.web.service.port }}"
3333
- name: NEXT_PUBLIC_API_BASE_URL
34-
value: "http://{{ include "textbee.fullname" .}}-api:{{ .Values.web.service.port }}/api/v1"
34+
value: "http://svc-{{ include "textbee.fullname" .}}-api:{{ .Values.api.service.port }}/api/v1"
3535
- name: DATABASE_URL
3636
valueFrom:
3737
secretKeyRef:

0 commit comments

Comments
 (0)