2023-06-27 16:00:41 +03:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
2023-06-29 07:13:35 +03:00
|
|
|
name: { { include "affine-cloud.fullname" . } }
|
|
|
|
labels: { { - include "affine-cloud.labels" . | nindent 4 } }
|
2023-06-27 16:00:41 +03:00
|
|
|
spec:
|
2023-06-29 07:13:35 +03:00
|
|
|
type: '{{ .Values.affineCloud.service.type }}'
|
2023-06-27 16:00:41 +03:00
|
|
|
ports:
|
2023-06-28 15:30:02 +03:00
|
|
|
- name: http
|
2023-06-27 16:00:41 +03:00
|
|
|
protocol: TCP
|
2023-06-29 07:13:35 +03:00
|
|
|
port: { { .Values.affineCloud.service.port } }
|
2023-06-27 16:00:41 +03:00
|
|
|
targetPort: 3000
|
2023-06-29 07:13:35 +03:00
|
|
|
selector: { { - include "affine-cloud.selectorLabels" . | nindent 4 } }
|