Files
BellScheduler/charts/templates/service.yaml
William Peebles 64fb6351fe
Some checks failed
continuous-integration/drone/push Build is failing
create helm chart
2022-11-19 21:39:05 -05:00

16 lines
394 B
YAML

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