apiVersion: v1 kind: Service metadata: name: {{ include "immich.fullname" . }} labels: {{- include "immich.labels" . | nindent 4 }} spec: type: {{ .Values.immich.service.type }} ports: - port: {{ .Values.immich.service.port }} targetPort: http protocol: TCP name: http selector: {{- include "immich.selectorLabels" . | nindent 4 }} app.kubernetes.io/component: server --- {{- if .Values.immich.machineLearning.enabled }} apiVersion: v1 kind: Service metadata: name: {{ include "immich.fullname" . }}-machine-learning labels: {{- include "immich.labels" . | nindent 4 }} app.kubernetes.io/component: machine-learning spec: type: {{ .Values.immich.machineLearning.service.type }} ports: - port: {{ .Values.immich.machineLearning.service.port }} targetPort: http protocol: TCP name: http selector: {{- include "immich.selectorLabels" . | nindent 4 }} app.kubernetes.io/component: machine-learning {{- end }}