erigon-pulse/k8s/base/http.yaml
Mark Shields 1bcf162bf2
feat: add base kubernetes manifests (#5664)
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
2022-10-07 21:43:42 +01:00

19 lines
264 B
YAML

apiVersion: v1
kind: Service
metadata:
labels:
app: erigon
name: http
spec:
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
ports:
- name: http
port: 8545
protocol: TCP
targetPort: 8545
selector:
app: erigon
type: LoadBalancer