Skip to content

Commit

Permalink
[#3478] Disable insecure ports in Sandbox deployment
Browse files Browse the repository at this point in the history
Fixes #3478

Signed-off-by: Kai Hudalla <[email protected]>
  • Loading branch information
sophokles73 committed Jul 10, 2023
1 parent 3beb386 commit 08ffc39
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions deploy/src/main/sandbox/hono-values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ messagingNetworkTypes:

amqpMessagingNetworkExample:
enabled: true
insecurePortEnabled: false
dispatchRouter:
uidFormat: "n"
adapterUids: "hono.eclipseprojects.io"
Expand Down Expand Up @@ -46,11 +47,10 @@ adapters:
imageName: "eclipse/hono-adapter-http-native"
hono:
http:
insecurePortEnabled: false
bindAddress: "0.0.0.0"
keyPath: "/opt/hono/tls/tls.key"
certPath: "/opt/hono/tls/tls.crt"
insecurePortEnabled: true
insecurePortBindAddress: "0.0.0.0"
idleTimeout: 20
jmsVendorPropsEnabled: true
maxPayloadSize: 8096
Expand All @@ -70,11 +70,10 @@ adapters:
imageName: "eclipse/hono-adapter-mqtt-native"
hono:
mqtt:
insecurePortEnabled: false
bindAddress: "0.0.0.0"
keyPath: "/opt/hono/tls/tls.key"
certPath: "/opt/hono/tls/tls.crt"
insecurePortEnabled: true
insecurePortBindAddress: "0.0.0.0"
jmsVendorPropsEnabled: true
maxPayloadSize: 8096
tenantIdleTimeout: "1h"
Expand All @@ -94,11 +93,10 @@ adapters:
imageName: "eclipse/hono-adapter-amqp-native"
hono:
amqp:
insecurePortEnabled: false
bindAddress: "0.0.0.0"
keyPath: "/opt/hono/tls/tls.key"
certPath: "/opt/hono/tls/tls.crt"
insecurePortEnabled: true
insecurePortBindAddress: "0.0.0.0"
tenantIdleTimeout: "1h"
maxConnections: 200
tlsKeysSecret: "sandbox-tls"
Expand All @@ -116,6 +114,7 @@ adapters:
imageName: "eclipse/hono-adapter-coap-native"
hono:
coap:
insecurePortEnabled: false
bindAddress: "0.0.0.0"
port: 5684
keyPath: "/opt/hono/tls/tls.key"
Expand Down Expand Up @@ -168,11 +167,10 @@ deviceRegistryExample:
certPath: "/opt/hono/tls/tls.crt"
http:
authenticationRequired: false
insecurePortEnabled: false
bindAddress: "0.0.0.0"
keyPath: "/opt/hono/tls/tls.key"
certPath: "/opt/hono/tls/tls.crt"
insecurePortEnabled: true
insecurePortBindAddress: "0.0.0.0"
svc:
maxDevicesPerTenant: 10
tlsKeysSecret: "sandbox-tls"
Expand Down Expand Up @@ -227,10 +225,11 @@ kafka:
## 10MB
logSegmentBytes: _10485760
auth:
# no TLS. That would be "sasl_tls"
clientProtocol: "sasl"
tls:
existingSecrets: []
type: "pem"
pemChainIncluded: true
existingSecrets:
- "sandbox-tls"
externalAccess:
autoDiscovery:
enabled: false
Expand Down

0 comments on commit 08ffc39

Please sign in to comment.