- i can drg create app/dev, but i can’t publish msg by http (also can’t connect to mqtt-endpoint):
huangjm@DESKTOP-06B3E7S:~$ echo '{"temp":42}' | http --auth 'mqtt_dev@some-app:mqtt_dev' POST https://http-endpoint.172.18.0.2.nip.io:30443/v1/foo
http: error: ConnectionError: ('Connection aborted.', OSError(0, 'Error')) while doing POST request to URL: https://http-endpoint.172.18.0.2.nip.io:30443/v1/foo
but i can publish in the http-endpoint pod:
[root@http-endpoint-57d7ff8fd4-ss6dz endpoint]# curl --data {"temp":42} --cacert /etc/endpoint/tls.crt --user 'mqtt_dev@some-app:mqtt_dev' https://http-endpoint.172.18.0.2.nip.io:30443/v1/foo
[root@http-endpoint-57d7ff8fd4-ss6dz endpoint]#
- is there something not configure?