mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
740a9b76a7
* 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
29 lines
518 B
YAML
29 lines
518 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-ingress
|
|
namespace: nginx-ingress
|
|
spec:
|
|
externalTrafficPolicy: Local
|
|
type: LoadBalancer
|
|
loadBalancerIP: 35.221.47.224
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|
|
protocol: TCP
|
|
name: http
|
|
- port: 443
|
|
targetPort: 443
|
|
protocol: TCP
|
|
name: https
|
|
- port: 20000
|
|
targetPort: 20000
|
|
protocol: TCP
|
|
name: beacon-relay
|
|
- port: 20001
|
|
targetPort: 20001
|
|
protocol: TCP
|
|
name: beacon-bootnode
|
|
selector:
|
|
app: nginx-ingress
|