openwhisk-devtools icon indicating copy to clipboard operation
openwhisk-devtools copied to clipboard

Development tools for building and deploying Apache OpenWhisk

Results 34 openwhisk-devtools issues
Sort by recently updated
recently updated
newest added

It looks like the various openwhisk/x:nightly versions do not match currently. ```sh make quick-start make add-catalog make create-provider-alarms ``` fails with: ``` npm WARN deprecated [email protected]: request has been deprecated,...

Hi, trying to get this thing up and running via docker-compose for the first time. Spent a few hours and nothing works. ``` Installing apimgmt actions ok: updated action apimgmt/getApi...

* Adds docker and python to knative runtimes * Modifies actionProxy to accept general runtime implementations for additional platforms * Adds openwhisk implementation of the general runtime * Adds basic...

User [has reported]( https://stackoverflow.com/questions/50203277/openwhisk-request-entity-too-large?noredirect=1#comment87573429_50203277) an issue deploying larger actions with error returned: `413 Request Entity Too Large`. I've started devtools using docker compose and can reproduce the issue using the...

docker-compose

web action has a list of parameters which are reserved and can not be manipulated by the user. If a user sends `__OW_METHOD`, `__OW_HEADERS`, and `__OW_PATH` as part of request...

wip

OpenWhisk web actions has the ability to protect action parameters against accidental or intentional mutation in query or body parameters. Using the `final` annotation on an action seals all action...

Actions can be invoked via one of HTTP GET, PUT, DELETE, and POST. We are also looking at invocation using any one of these methods: PATCH, HEAD, and OPTIONS. Also,...

If a content-type header is not declared in the action result’s headers, the body is interpreted as `application/json` for non-string values, and `text/html` otherwise. When the `content-type` is defined, the...

OpenWhisk web actions may receive URL encoded form data `application/x-www-form-urlencoded` as input in addition to standard `application/json`. V.S. Knative web actions only accepts `application/json` data. We need to find a...

With OpenWhisk, a web action can be invoked using a URL that is structured as follows: ```https://{APIHOST}/api/v1/web/{QUALIFIED ACTION NAME}.{EXT}``` For example, ``` https://${APIHOST}/api/v1/web/guest/demo/hello.http``` The fully qualified name of an action...