In an earlier blog post, I explained how to use Go language binaries on OpenWhisk using Docker-based Actions. It relied on building Docker images for each serverless function and hosting them on Docker Hub.
Recent updates to Docker-based Actions have made this process much simpler. Developers don’t need to build and expose public images anymore.
Let’s re-visit the example from the previous post and see how to get it running using this new approach…
Have you seen this post explaining how Docker-based Actions work? This post assumes you have already read that first.
Go Language Actions
Go’s build system combines application source code and dependencies into a single execution binary. Bundling this binary into a zip file allows us to overwrite the runtime stub prior to invocation.
Runtime binaries will be executed by the Python-based invoker for each invocation. Request parameters will be passed as a JSON string using the first command-line argument. The invoker expects the Action result to be written to standard output as a JSON string.
Action Source Code
Here’s a simple Go function that returns a greeting string from an input parameter. It parses the JSON string provided on the command-line to look for a name
parameter. If this isn’t present, it defaults to Stranger
. It returns a JSON object with the greeting string (msg
) by writing to the console.
|
|
Building this locally allows us to test it works.
|
|
Before we can deploy this binary to OpenWhisk, it must be compiled for the platform architecture.
Cross-Compiling Locally
Go 1.5 introduced much improved support for cross-compilation.
If you have the development environment installed locally, you can compile the binary for another platform by setting environment variables. The full list of supported architectures is available here.
OpenWhisk uses an Alpine Linux-based environment to execute Actions.
|
|
Checking the file type demonstrates we have built a static binary for the Linux x86_64 platform.
|
|
Cross-Compiling Using Docker
If you don’t want to install the Go development toolchain, Docker can be used to start a container with the environment set up.
|
|
Create & Deploy Archive
Add the binary to a zip file, ensuring the file is named exec
in the archive.
Use the wsk
command-line to create a new Docker Action using this archive.
|
|
Invoking Action
Test the action from the command-line to verify it works.
|
|
Success 😎.