cli icon indicating copy to clipboard operation
cli copied to clipboard

CLI tool for fnproject.

Results 117 cli issues
Sort by recently updated
recently updated
newest added

Verbose is confusing/broken - it seems there are two flags - one on "fn " one on "fn build" and only the former works Expectation ``` fn deploy --app test...

good first issue

A long time ago we did that but implicitly and we wiped that functionality out. So, adding `--from-file` to `fn routes create` would bring better UX unless you do `fn...

can't access https://api.bintray.com/search/packages/maven?repo=fnproject&g=com.fnproject.fn&a=fdk, even use some public cloud provider , like aws EC2, oracle public cloud (OCI-classic) I have question why java runtime dependent bintray api service ?

The CLI assumes in lots of places that errors will contain a payload with a well formed error message: ```{ "error":{ "message": "something" } }``` If the response is not...

bug
good first issue

After running `fn start` in the foreground, Ctrl-C'ing the process sometimes stops the functions container and sometimes leaves it running. Working with new users I've seen them interrupting `fn start`...

Here's the thing. `fn deploy` forces developers to set `FN_REGISTRY` or use `--registry`, but `fn build` doesn't do so, internally they use the same functionality. My question is, should both...

So, the idea is that developers can call "fn start" with specifying the docker network where fn container must be deployed. As an alternative, we should document that "fn start"...

To support integration with CI/CD platforms and tools and to make it easier for a developer to capture, version, and deploy application configuration for a given context the Fn cli...

enhancement
for discussion

# Problem `fn deploy` deletes comments from the func file. ## Steps to reproduce Assume that you have comments in func file: ```yaml name: func version: 0.0.1 runtime: go type:...

Here's the use case. I have function implemented and it has its own func.yml, so i want to create more function with the same image, so i decided to create...