I deployed OpenWhisk on a local Ubuntu machine according to the following documentation: https://github.com/openwhisk/openwhisk/blob/master/tools/ubuntu-setup/README.md. However, when I try to invoke sample action with command:
wsk action invoke /whisk.system/utils/echo -p message hello --blocking --result
I get the following error:
Unable to invoke action ‘utils/echo’: Post
https://172.17.0.1/api/v1/namespaces/whisk.system/actions/utils/echo?
blocking=true: dial tcp 172.17.0.1:443: getsockopt: connection refused.
I set my apihost to 172.17.0.1 (Docker edge host) and I’m using guest namespace with authentication from ansible/files/auth.guest. I suppose that some services should run in the Docker so that it’ll listen on the 443 port, but I have no idea what services and why are they not running.
I would be grateful for any help.