mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
16 lines
352 B
YAML
16 lines
352 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "bbgo.fullname" . }}
|
|
labels:
|
|
{{- include "bbgo.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "bbgo.selectorLabels" . | nindent 4 }}
|