Files
LiquidCode_Cluster/liquid-code/templates/Services/testing-module-worker-service.yaml
Roman Pytkov e7e3cb8c23 Updates services and ingress configurations
Updates the chart and app versions.

Modifies service configurations to use port 80 for both the testing module gateway and worker services.

Updates ingress to include a host for the tester, directing traffic to the testing module gateway service on port 80.

Updates backend deployment to include the correct URL for the testing module and the base service URL.

Disables database dropping on application startup.
2025-11-02 16:58:54 +03:00

15 lines
298 B
YAML

{{ 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: 80
targetPort: 8080
{{ end }}