1

I want to setup apache openwhisk on-premise in my organization. so that we can use it internally within the org. i am not able to find much on the net on this. i tried cloning the code from git and building it in the windows. but it doesn't work. kindly help

Katiyman
  • 827
  • 2
  • 12
  • 32

2 Answers2

1

Follow these steps to start the platform in a virtual machine in your local environment.

# 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

If this works, you should see the following output.

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

If you encounter problems with these steps, please open an issue in the Github repository for the project.

James Thomas
  • 4,303
  • 1
  • 20
  • 26
0

Deploy OpenWhisk using the ansible playbook in high-availability mode.

Larry B.
  • 753
  • 6
  • 21