Files
loc_az_hci/gitops/apps/besu/templates/service.yaml
defiQUG c39465c2bd
Some checks failed
Test / test (push) Has been cancelled
Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 09:04:46 -08:00

25 lines
566 B
YAML

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