mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
25 lines
488 B
YAML
25 lines
488 B
YAML
|
kind: ConfigMap
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: nginx-config
|
||
|
namespace: nginx-ingress
|
||
|
data:
|
||
|
stream-snippets: |
|
||
|
upstream beacon-chain-relay-tcp {
|
||
|
server relay.beacon-chain.svc.cluster.local:4000;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 20000;
|
||
|
proxy_pass beacon-chain-relay-tcp;
|
||
|
}
|
||
|
|
||
|
upstream beacon-chain-bootnode-tcp {
|
||
|
server bootnode.beacon-chain.svc.cluster.local:4000;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 20001;
|
||
|
proxy_pass beacon-chain-bootnode-tcp;
|
||
|
}
|