drone/charts/gitness/templates/service.yaml
Alex Wellnitz 0128df011c
Feature: Helm kubernetes Deployment (#3417)
Added helm deployment so you can quickly deploy it to your Kubernetes
cluster.

The deployment consists of:
 - Service
 - Deployment
 - PVC
 - Ingress
 - ServiceAccount
2023-11-08 11:55:37 -08:00

15 lines
360 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "gitness.fullname" . }}
labels:
{{- include "gitness.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "gitness.selectorLabels" . | nindent 4 }}