mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 13:40:05 +00:00
1bcf162bf2
Adds bare minimum, base kubernetes manifests for running erigon in kubernetes. Does not include crucial beacon chain, persistent volumes, etc. I currently use this as a base for 5 erigon Pods, each with an erigon execution node and prysm beacon node, along with 10 rpcdaemon pods, a TLS-terminated Ingress with a cert-manager issued TLS certificate. I would like to give back to the community then use this as an upstream kustomized base. See: https://kustomize.io
19 lines
287 B
YAML
19 lines
287 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: erigon
|
|
name: eth66-peering-udp
|
|
spec:
|
|
ipFamilies:
|
|
- IPv4
|
|
ipFamilyPolicy: SingleStack
|
|
ports:
|
|
- name: eth66-pr-udp
|
|
port: 30303
|
|
protocol: UDP
|
|
targetPort: 30303
|
|
selector:
|
|
app: erigon
|
|
type: LoadBalancer
|