16 lines
474 B
YAML
16 lines
474 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "deploy.serviceFullname" (dict "root" . "svcKey" "git_hook") }}
|
|
labels:
|
|
{{- include "deploy.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: git-hook
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: {{ .Values.services.git_hook.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "deploy.serviceSelectorLabels" (dict "root" . "svcKey" "git_hook") | nindent 4 }} |