prysm-pulse/k8s/geth/bootnode.service.yaml
Preston Van Loon 740a9b76a7
Kubernetes - Part 3 of ?? (#981)
* Add nginx ingress for proof-of-work namespace

* connect beacon-chain to pow namespace geth-nodes for websocket connections

* Added relay to beacon-chain

* Route inbound TCP traffic on port 20000 to beacon-relay

* Add bootnode

* Add a basic pk

* checkpoint

* Added flag for p2p port

* Register flag with main

* Set P2P port specifically

* Add beacon chain config

* add deployvrc job

* Add deployvrc service account

* review

* gazelle

* a cluster is needed, i guess
2018-11-28 00:27:21 -05:00

56 lines
1.0 KiB
YAML

kind: Service
apiVersion: v1
metadata:
name: geth-bootnode-v4
namespace: pow
spec:
selector:
component: bootnode-v4
universe: geth
ports:
- port: 8545
targetPort: 8545
name: rpc
protocol: TCP
- port: 30303
targetPort: 30303
name: discovery-tcp
protocol: TCP
- port: 30303
targetPort: 30303
name: discovery-udp
protocol: UDP
- port: 30301
targetPort: 30301
name: bootnode-udp
protocol: UDP
type: ClusterIP
---
kind: Service
apiVersion: v1
metadata:
name: geth-bootnode-v5
namespace: pow
spec:
selector:
component: bootnode-v5
universe: geth
ports:
- port: 8545
targetPort: 8545
name: rpc
protocol: TCP
- port: 30303
targetPort: 30303
name: discovery-tcp
protocol: TCP
- port: 30303
targetPort: 30303
name: discovery-udp
protocol: UDP
- port: 30301
targetPort: 30301
name: bootnode-udp
protocol: UDP
type: ClusterIP