Files
s3bot/helm/templates/service.yaml
2023-02-21 19:56:36 +00:00

16 lines
355 B
YAML

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