Skip to content

Commit

Permalink
add websocket support
Browse files Browse the repository at this point in the history
  • Loading branch information
aWN4Y25pa2EK committed Jul 17, 2024
1 parent 49e2972 commit ca6caee
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/celestia-node/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ spec:
- name: p2p-ws
containerPort: {{ .Values.node.containerPorts.ws }}
hostPort: {{ .Values.node.containerPorts.ws }}
protocol: TCP
protocol: TCP
- name: p2p-tcp
containerPort: {{ .Values.node.containerPorts.p2p }}
hostPort: {{ .Values.node.containerPorts.p2p }}
Expand Down
21 changes: 13 additions & 8 deletions charts/celestia-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,23 +160,28 @@ node:
GranterAddress: []
P2P:
ListenAddresses:
# IPv4
- /ip4/0.0.0.0/udp/2121/quic-v1/webtransport
- /ip6/::/udp/2121/quic-v1/webtransport
- /ip4/0.0.0.0/udp/2121/quic-v1
- /ip6/::/udp/2121/quic-v1
#- /ip4/0.0.0.0/tcp/2122/wss
- /ip4/0.0.0.0/tcp/2121
# IPv6
- /ip6/::/udp/2121/quic-v1/webtransport
- /ip6/::/udp/2121/quic-v1
#- /ip6/::/tcp/2122/wss
- /ip6/::/tcp/2121
AnnounceAddresses: []
NoAnnounceAddresses:
# IPv4
- /ip4/127.0.0.1/udp/2121/quic-v1/webtransport
- /ip4/0.0.0.0/udp/2121/quic-v1/webtransport
- /ip6/::/udp/2121/quic-v1/webtransport
- /ip4/0.0.0.0/udp/2121/quic-v1
- /ip4/127.0.0.1/udp/2121/quic-v1
- /ip6/::/udp/2121/quic-v1
- /ip4/0.0.0.0/tcp/2121
- /ip4/127.0.0.1/tcp/2122/wss
- /ip4/127.0.0.1/tcp/2121
- /ip6/::/tcp/2121
# IPv6
- /ip6/::1/udp/2121/quic-v1/webtransport
- /ip6/::1/udp/2121/quic-v1
- /ip6/::1/tcp/2122/wss
- /ip6/::1/tcp/2121
MutualPeers: []
PeerExchange: true
RoutingTableRefreshPeriod: 1m0s
Expand Down
5 changes: 2 additions & 3 deletions examples/celestia-node/arabica-bridge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ persistence:
node:
image:
registry: ttl.sh
repository: b757629c-c54c-4b7c-af30-68a1155356ae
repository: 6d4ea755-c9d9-4130-9383-280aa32ca046
tag: 24h
nodeSelector:
k8s.scaleway.com/pool-name: *pool
persistentVolumeClaimRetentionPolicy:
whenDeleted: Delete
whenScaled: Retain
whenScaled: Delete
otelAgent:
enabled: true
grafanaOtelSecret:
Expand Down Expand Up @@ -69,7 +69,6 @@ node:
Core:
IP: consensus-validator
RPC:
Enabled: true
Address: 0.0.0.0
Gateway:
Enabled: true
Expand Down

0 comments on commit ca6caee

Please sign in to comment.