Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tariel-x/wsk-examples
Collection of example go functions for apache openwhisk
https://github.com/tariel-x/wsk-examples
example go openwhisk
Last synced: about 13 hours ago
JSON representation
Collection of example go functions for apache openwhisk
- Host: GitHub
- URL: https://github.com/tariel-x/wsk-examples
- Owner: tariel-x
- Created: 2019-02-04T13:17:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-23T18:21:48.000Z (over 5 years ago)
- Last Synced: 2024-06-21T20:19:08.824Z (5 months ago)
- Topics: example, go, openwhisk
- Language: Go
- Homepage:
- Size: 2.41 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenWhisk golang examples
This is the collection of example golang functions for OpenWhisk.
Before using, check that wsk is configured correctly:
Run at host: `wsk property get --auth | cut -c13-` to obtain auth key.
At local: `wsk -i property set --apihost 0.0.0.0 --auth KEY --namespace guest`, where `KEY` is the result from the host.
Test at local: `wsk -i namespace get`.
## Content
1. [Hello world](hello)
2. [Hello world standalone binary](hello-standalone)
3. [Deploy sequences with wskdeploy](wskdeploy)
4. [Implement own action loop](actionloop)
5. [Multiple files in main package](multifile)
6. [Actionloop with subpackage](actionloop-multifile)
7. [Actionloop and vendors without vendor folder](vendoring)