Переименовано

This commit is contained in:
2025-10-22 19:16:22 +03:00
parent b9881ea0f2
commit 52c0211436
15 changed files with 35 additions and 43 deletions

View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-backend-service
spec:
selector:
app: {{ .Release.Name }}-backend
ports:
- protocol: TCP
port: 80
targetPort: 8080

View File

@@ -0,0 +1,14 @@
{{ if .Values.frontend.enable }}
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-frontend-service
spec:
selector:
app: {{ .Release.Name }}-frontend
ports:
- protocol: TCP
port: 80
targetPort: 8000
{{ end }}

View File

@@ -0,0 +1,13 @@
{{ if .Values.queue.enable }}
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-queue-service
spec:
selector:
app: {{ .Release.Name }}-queue
ports:
- protocol: TCP
port: 8080
targetPort: 8080
{{ end }}