Openwhisk无服务器设置内部

问题描述 投票:0回答:2

我想在我的组织内部设置apache openwhisk。这样我们就可以在组织内部使用它。我无法在网上找到太多。我尝试从git克隆代码并在windows中构建它。但它不起作用。善意的帮助

apache serverless-framework openwhisk serverless-architecture
2个回答
1
投票

按照these steps在本地环境中的虚拟机中启动平台。

# Clone openwhisk
git clone --depth=1 https://github.com/openwhisk/openwhisk.git

# Change directory to tools/vagrant
cd openwhisk/tools/vagrant

# Run script to create vm and run hello action
./hello

如果这样可行,您应该看到以下输出。

wsk action invoke /whisk.system/utils/echo -p message hello --result
{
    "message": "hello"
}

如果您遇到这些步骤的问题,请在项目的Github存储库中使用open an issue


0
投票

在高可用性模式下使用ansible playbook部署OpenWhisk。

© www.soinside.com 2019 - 2024. All rights reserved.