Files
metalcheck/helm/templates/service.yaml
Aleksandr Tcitlionok acef6cb9a1
Some checks failed
CI Pipeline / Build and Push Docker Image (push) Failing after 2m48s
update(app): add helm chart and cleanup repo
2024-12-11 09:05:15 +00:00

15 lines
294 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-service
labels:
app: {{ .Chart.Name }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 80
selector:
app: {{ .Chart.Name }}
release: {{ .Release.Name }}