Задеплоен тестирующий модуль

This commit is contained in:
2025-10-27 23:57:03 +03:00
parent 0bf26af326
commit 6b84adbed2
9 changed files with 96 additions and 44 deletions

View File

@@ -1,13 +0,0 @@
{{ 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 }}

View File

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

View File

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