OpenWisk Docker支持安装失败

当我尝试在OpenWhisk中安装Docker骨架时,失败并出现此错误:

$ wsk sdk install docker tar: blackbox-0.1.0.tar.gz: Cannot open: No such file or directory tar: Error is not recoverable: exiting now Could not install docker skeleton.

我推测你还没有部署OpenWhisk,并正在做这样的事情。

 > wsk sdk install docker tar: blackbox-0.1.0.tar.gz: Cannot open: No such file or directory tar: Error is not recoverable: exiting now Could not install docker skeleton. 

要部署系统,请按照https://github.com/openwhisk/openwhisk#build-and-deploy-openwhisk上的说明进行操作。 你应该得到这样的结果:

 > ant deploy >& /dev/null > wsk sdk install docker The docker skeleton is now installed at the current directory. > ls dockerSkeleton/ Dockerfile README.md buildAndPush.sh client server 

所以看起来,缺less的blackbox-0,1.0.tar.gz应该由api端点承载,但是不包含在OpenWhisk中。

我的解决方法是通过以下方式将其从Bluemix中提取出来:

 wsk property unset --apihost wsk sdk install docker wsk property set --apihost <openwhisk api host> 

我开了一个问题。 https://github.com/openwhisk/openwhisk/issues/74