This makes set up easier for new users. Users can still set FISSION_NAMESPACE but it will default to "fission". Users can also still set KUBECONFIG, but it will default to $HOME/.kube/config. Also, update the post-install chart notes.txt and the install guide to use "fission function test" as the first step after install. This means that if there's anything wrong with the setup, the user will see useful errors instead of "internal server error". Also, they can test their setup without worrying about nodeports or ingresses or whatever. All existing functionality of FISSION_URL and FISSION_ROUTER continues to work.
26 lines
971 B
Plaintext
26 lines
971 B
Plaintext
1. Install the client CLI.
|
|
|
|
Mac:
|
|
$ curl -Lo fission https://github.com/fission/fission/releases/download/0.5.0/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/
|
|
|
|
Linux:
|
|
$ curl -Lo fission https://github.com/fission/fission/releases/download/0.5.0/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/
|
|
|
|
Windows:
|
|
For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.5.0/fission-cli-windows.exe
|
|
|
|
2. You're ready to use Fission!
|
|
|
|
# Create an environment
|
|
$ fission env create --name nodejs --image fission/node-env
|
|
|
|
# Get a hello world
|
|
$ curl https://raw.githubusercontent.com/fission/fission/master/examples/nodejs/hello.js > hello.js
|
|
|
|
# Register this function with Fission
|
|
$ fission function create --name hello --env nodejs --code hello.js
|
|
|
|
# Run this function
|
|
$ fission function test --name hello
|
|
Hello, world!
|