fix:#74 added grpc port to ical service

This commit is contained in:
Elmar Kresse
2025-04-23 15:05:54 +02:00
parent ad3b1f85ff
commit 94bfc63178
3 changed files with 10 additions and 1 deletions

View File

@ -33,6 +33,9 @@ spec:
- name: ical - name: ical
containerPort: {{ .Values.ical.service.targetPort }} containerPort: {{ .Values.ical.service.targetPort }}
protocol: TCP protocol: TCP
- name: ical-protobuf
containerPort: {{ .Values.ical.service.protobufTargetPort }}
protocol: TCP
env: env:
- name: DATA_MANAGER_URL - name: DATA_MANAGER_URL
value: {{ .Values.dataManager.service.name }} value: {{ .Values.dataManager.service.name }}

View File

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

View File

@ -10,7 +10,7 @@ dataManager:
name: &service_data_manager htwkalender-data-manager name: &service_data_manager htwkalender-data-manager
port: &service_data_manager_port 8090 port: &service_data_manager_port 8090
targetPort: 8090 targetPort: 8090
protobufPort: &service_data_manager_protobuf_port 50051 protobufPort: 50051
protobufTargetPort: 50051 protobufTargetPort: 50051
ical: ical:
name: ical name: ical
@ -22,6 +22,8 @@ ical:
name: &service_ical htwkalender-ical name: &service_ical htwkalender-ical
port: &service_ical_port 8091 port: &service_ical_port 8091
targetPort: 8091 targetPort: 8091
protobufPort: 50051
protobufTargetPort: 50051
frontend: frontend:
name: frontend name: frontend
host: &frontend_host "FRONTEND_URL" host: &frontend_host "FRONTEND_URL"