fix:#74 added grpc port to service

This commit is contained in:
Elmar Kresse
2025-04-23 11:24:45 +02:00
parent 15bc1e4705
commit ad3b1f85ff
3 changed files with 9 additions and 0 deletions

View File

@ -37,6 +37,9 @@ spec:
- name: data-manager
containerPort: {{ .Values.dataManager.service.targetPort }}
protocol: TCP
- name: data-manager-protobuf
containerPort: {{ .Values.dataManager.service.protobufTargetPort }}
protocol: TCP
volumeMounts:
{{- if .Values.persistence.enabled }}
- name: {{ include "htwkalender.name" . }}-storage

View File

@ -15,3 +15,7 @@ spec:
targetPort: {{ .Values.dataManager.service.targetPort }}
protocol: TCP
name: data-manager
- port: {{ .Values.dataManager.service.protobufPort }}
targetPort: {{ .Values.dataManager.service.protobufTargetPort }}
protocol: TCP
name: data-manager-protobuf

View File

@ -10,6 +10,8 @@ dataManager:
name: &service_data_manager htwkalender-data-manager
port: &service_data_manager_port 8090
targetPort: 8090
protobufPort: &service_data_manager_protobuf_port 50051
protobufTargetPort: 50051
ical:
name: ical
replicas: 2