apache / apache/openwhisk-devtools

knative - Content Extensions - Support invocation of non-standard extensions

Open
#214 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
181
Forks
124
PR merge metrics
No merged PRs in 30d

Description

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 consists of three parts: the namespace, the package name, and the action name.

With Knative, a web action can be invoked using a Host and URL such as:

```curl -H "Host: nodejs-helloworld.default.example.com" -X POST http://<$IP_ADDRESS>/```

https://github.com/apache/incubator-openwhisk/blob/master/docs/webactions.md#additional-features

With OpenWhisk, the desired content type (one of .json, .html, .http, .svg or .text) can be specified as the extension to the action name. For example, an action `/guest/demo/hello` is referenced as `/guest/demo/hello.http` to receive an HTTP response back.

But with Knative, there is no means to specify such desired content type in terms of extension to the action name as the URL is common for all the actions without any action name ```http://<$IP_ADDRESS>/```.

We need to design this and find a better way to support content extensions with knative.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.