File tree 4 files changed +95
-10
lines changed
4 files changed +95
-10
lines changed Original file line number Diff line number Diff line change
1
+ hono :
2
+ app :
3
+ maxInstances : 1
4
+ healthCheckPort : 8088
5
+ healthCheckBindAddress : 0.0.0.0
6
+ http :
7
+ bindAddress : 0.0.0.0
8
+ insecurePortBindAddress : 0.0.0.0
9
+ insecurePortEnabled : true
10
+ keyPath : ${secret.path}/http-adapter-key.pem
11
+ certPath : ${secret.path}/http-adapter-cert.pem
12
+ messaging :
13
+ name : ' Hono HTTP Adapter'
14
+ host : messaging.hono
15
+ port : 5672
16
+ registration :
17
+ name : ' Hono HTTP Adapter'
18
+ host : ${hono.registration.host}
19
+ port : 5671
20
+ credentialsPath : ${secret.path}/http-adapter.credentials
21
+ trustStorePath : ${secret.path}/trusted-certs.pem
22
+ credentials :
23
+ name : ' Hono HTTP Adapter'
24
+ host : ${hono.registration.host}
25
+ port : 5671
26
+ credentialsPath : ${secret.path}/http-adapter.credentials
27
+ trustStorePath : ${secret.path}/trusted-certs.pem
28
+ tenant :
29
+ name : ' Hono HTTP Adapter'
30
+ host : ${hono.registration.host}
31
+ port : 5671
32
+ credentialsPath : ${secret.path}/http-adapter.credentials
33
+ trustStorePath : ${secret.path}/trusted-certs.pem
34
+ command :
35
+ name : ' Hono HTTP Adapter'
36
+ host : messaging.hono
37
+ port : 5672
38
+ metric :
39
+ reporter :
40
+ graphite :
41
+ active : true
42
+ host : influxdb.hono
43
+ port : 2003
44
+ # disable spring boot actuator endpoints, enable metrics
45
+ endpoints :
46
+ enabled : false
47
+ metrics :
48
+ enabled : true
Original file line number Diff line number Diff line change
1
+ hono :
2
+ app :
3
+ maxInstances : 1
4
+ healthCheckPort : 8088
5
+ healthCheckBindAddress : 0.0.0.0
6
+ mqtt :
7
+ bindAddress : 0.0.0.0
8
+ insecurePortBindAddress : 0.0.0.0
9
+ insecurePortEnabled : true
10
+ keyPath : ${secret.path}/mqtt-adapter-key.pem
11
+ certPath : ${secret.path}/mqtt-adapter-cert.pem
12
+ messaging :
13
+ name : ' Hono MQTT Adapter'
14
+ host : messaging.hono
15
+ port : 5672
16
+ registration :
17
+ name : ' Hono MQTT Adapter'
18
+ host : ${hono.registration.host}
19
+ port : 5671
20
+ credentialsPath : ${secret.path}/mqtt-adapter.credentials
21
+ trustStorePath : ${secret.path}/trusted-certs.pem
22
+ credentials :
23
+ name : ' Hono MQTT Adapter'
24
+ host : ${hono.registration.host}
25
+ port : 5671
26
+ credentialsPath : ${secret.path}/mqtt-adapter.credentials
27
+ trustStorePath : ${secret.path}/trusted-certs.pem
28
+ tenant :
29
+ name : ' Hono MQTT Adapter'
30
+ host : ${hono.registration.host}
31
+ port : 5671
32
+ credentialsPath : ${secret.path}/mqtt-adapter.credentials
33
+ trustStorePath : ${secret.path}/trusted-certs.pem
34
+ metric :
35
+ reporter :
36
+ graphite :
37
+ active : true
38
+ host : influxdb.hono
39
+ port : 2003
40
+ # disable spring boot actuator endpoints, enable metrics
41
+ endpoints :
42
+ enabled : false
43
+ metrics :
44
+ enabled : true
45
+
Original file line number Diff line number Diff line change 35
35
port : 5671
36
36
credentialsPath : ${secret.path}/mqtt-adapter.credentials
37
37
trustStorePath : ${secret.path}/trusted-certs.pem
38
- command :
39
- name : ' Hono MQTT Adapter'
40
- amqpHostname : hono-mqtt-internal
41
- host : hono-dispatch-router.hono
42
- port : 5673
43
- keyPath : ${secret.path}/mqtt-adapter-key.pem
44
- certPath : ${secret.path}/mqtt-adapter-cert.pem
45
- trustStorePath : ${secret.path}/trusted-certs.pem
46
38
metric :
47
39
reporter :
48
40
graphite :
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ oc create secret generic hono-adapter-http-vertx-conf \
81
81
--from-file=$CERTS /http-adapter-cert.pem \
82
82
--from-file=$CERTS /trusted-certs.pem \
83
83
--from-file=$SCRIPTPATH /../http-adapter.credentials \
84
- --from-file=application.yml=$SCRIPTPATH /hono-adapter-http-vertx-config.yml
84
+ --from-file=application.yml=$SCRIPTPATH /hono-adapter-http-vertx-config-enmasse .yml
85
85
oc create -f $CONFIG /hono-adapter-http-vertx-jar/META-INF/fabric8/openshift.yml
86
86
echo ... done
87
87
@@ -91,7 +91,7 @@ oc create secret generic hono-adapter-mqtt-vertx-conf \
91
91
--from-file=$CERTS /mqtt-adapter-cert.pem \
92
92
--from-file=$CERTS /trusted-certs.pem \
93
93
--from-file=$SCRIPTPATH /../mqtt-adapter.credentials \
94
- --from-file=application.yml=$SCRIPTPATH /hono-adapter-mqtt-vertx-config.yml
94
+ --from-file=application.yml=$SCRIPTPATH /hono-adapter-mqtt-vertx-config-enmasse .yml
95
95
oc create -f $CONFIG /hono-adapter-mqtt-vertx-jar/META-INF/fabric8/openshift.yml
96
96
echo ... done
97
97
You can’t perform that action at this time.
0 commit comments