Skip to content

Commit

Permalink
Disable quic and ws by default (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Svetomir Smiljkovic authored Jun 28, 2020
1 parent a88cded commit f3b18b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/bee/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
appVersion: latest
name: bee
version: 0.4.3
version: 0.4.4
description: Ethereum Swarm Bee Helm chart for Kubernetes
home: https://swarm.ethereum.org
icon: https://swarm-guide.readthedocs.io/en/latest/_images/swarm.png
Expand Down
4 changes: 2 additions & 2 deletions charts/bee/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ data:
password: {{ include "bee.password" . }}
{{- end }}
p2p-addr: {{ .Values.beeConfig.p2p_addr }}
p2p-disable-quic: {{ .Values.beeConfig.p2p_disable_quic }}
p2p-disable-ws: {{ .Values.beeConfig.p2p_disable_ws }}
p2p-enable-quic: {{ .Values.beeConfig.p2p_enable_quic }}
p2p-enable-ws: {{ .Values.beeConfig.p2p_enable_ws }}
tracing: {{ .Values.beeConfig.tracing }}
tracing-endpoint: {{ .Values.beeConfig.tracing_endpoint }}
tracing-service-name: {{ .Values.beeConfig.tracing_service_name }}
Expand Down
8 changes: 4 additions & 4 deletions charts/bee/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ beeConfig:
# existingSecretPasswordKey:
## P2P listen address
p2p_addr: :7070
## Disable P2P QUIC protocol
p2p_disable_quic: false
## Disable P2P WebSocket protocol
p2p_disable_ws: false
## Enable P2P QUIC protocol
p2p_enable_quic: false
## Enable P2P WebSocket protocol
p2p_enable_ws: false
## Enable tracing
tracing: false
## Endpoint to send tracing data
Expand Down

0 comments on commit f3b18b1

Please sign in to comment.