2024-11-14 08:13:40 +01:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: {{ .Release.Name }}
|
2024-11-20 10:32:53 +01:00
|
|
|
namespace: {{ .Release.Namespace }}
|
2024-11-14 08:13:40 +01:00
|
|
|
labels:
|
|
|
|
{{- include "basic-app.labels" . | nindent 4 }}
|
|
|
|
spec:
|
|
|
|
type: {{ .Values.service.type }}
|
|
|
|
ports:
|
2024-11-20 10:32:53 +01:00
|
|
|
- port: 80
|
|
|
|
targetPort: http-svc
|
2024-11-14 08:13:40 +01:00
|
|
|
protocol: TCP
|
|
|
|
name: http
|
2024-11-20 10:32:53 +01:00
|
|
|
- port: 8000
|
|
|
|
targetPort: webhook-svc
|
|
|
|
protocol: TCP
|
|
|
|
name: webhook
|
2024-11-14 08:13:40 +01:00
|
|
|
selector:
|
|
|
|
{{- include "basic-app.selectorLabels" . | nindent 4 }}
|