18 lines
456 B
YAML
18 lines
456 B
YAML
|
{{- if and .Values.forecasting.enabled (not .Values.federatedETL.agentOnly) }}
|
||
|
kind: Service
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: {{ template "forecasting.serviceName" . }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
{{- include "forecasting.commonLabels" . | nindent 4 }}
|
||
|
spec:
|
||
|
selector:
|
||
|
{{- include "forecasting.selectorLabels" . | nindent 4 }}
|
||
|
type: ClusterIP
|
||
|
ports:
|
||
|
- name: tcp-api
|
||
|
port: 5000
|
||
|
targetPort: 5000
|
||
|
{{- end }}
|