2

I've an OpenWhisk instance running on my Ubuntu server.

How can I deploy a new invoker on another machine which will function as an invoker of the current system?

Or Harel
  • 525
  • 1
  • 6
  • 13

1 Answers1

1

This is as simple as running another Invoker instance with a unique ID. Invokers register automatically with the controller via Kafka, the health topic. This is the Docker's cmd instruction you could use: "cmd": "/bin/sh -c \"/invoker/bin/invoker `hostname | tr -dc '0-9'` >> /dev/stderr\""

ddragosd
  • 226
  • 2
  • 3
  • What is the `health` topic? And I should take the docker image from my original deployed OW and run it in my other machine with the original machine IP as the first parameter to /invoker/bin/invoker? – Or Harel Aug 23 '17 at 11:57