- Add chart/ with backend, frontend, valkey deployments, services, and ingress - Update nginx.conf to use BACKEND_URL env var via envsubst - Update Dockerfile.frontend to use nginx template mechanism - Build.yml: switch Docker registry from Gitea to DOCR, add helm package+push step
14 lines
324 B
YAML
14 lines
324 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}-backend
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "lunarfront.labels" . | nindent 4 }}
|
|
spec:
|
|
selector:
|
|
app: {{ .Release.Name }}-backend
|
|
ports:
|
|
- port: {{ .Values.backend.port }}
|
|
targetPort: {{ .Values.backend.port }}
|