mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
5eb5f6afa9
* second pass at faucet, no rate limiting yet * Add authentication support, step 1. This stuff needs to be refactored and tested * move deposit input to keystore pkg, add proof of possession and withdrawal addr * checkpoint on progress with cluster private key manager * checkpoint w/ bootnode config * checkpoint * resolve todo * encrypt the secrets * add note about querying testnet * workspace * checkpoitn * remove limits * update * checkpoint * checkpoint * remove jwt stuff * fix build * lint * lint * remove init * remove jwt * update * checkpoint
49 lines
799 B
YAML
49 lines
799 B
YAML
apiVersion: networking.istio.io/v1alpha3
|
|
kind: Gateway
|
|
metadata:
|
|
name: relay-gateway
|
|
namespace: beacon-chain
|
|
spec:
|
|
selector:
|
|
istio: ingressgateway
|
|
servers:
|
|
- port:
|
|
number: 30000
|
|
name: tcp-p2p-relay
|
|
protocol: TCP
|
|
hosts:
|
|
- '*'
|
|
---
|
|
kind: VirtualService
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
metadata:
|
|
name: relay
|
|
namespace: beacon-chain
|
|
spec:
|
|
hosts:
|
|
- '*'
|
|
gateways:
|
|
- relay-gateway
|
|
tcp:
|
|
- match:
|
|
- port: 30000
|
|
route:
|
|
- destination:
|
|
host: relay.beacon-chain.svc.cluster.local
|
|
port:
|
|
number: 4000
|
|
---
|
|
kind: Service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: relay
|
|
namespace: beacon-chain
|
|
spec:
|
|
selector:
|
|
component: relay
|
|
ports:
|
|
- port: 4000
|
|
targetPort: 4000
|
|
name: relayport
|
|
type: ClusterIP
|