From 03e3a6358121b0357529b08f596574296a001a6b Mon Sep 17 00:00:00 2001 From: yang qf Date: Tue, 9 May 2017 13:36:07 -0500 Subject: [PATCH] Move fission-ui intro to Install.md (#159) --- INSTALL.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 960a1346..b0b54760 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,7 +7,8 @@ * [Get and Run Fission: GKE or other Cloud](#get-and-run-fission-gke-or-other-cloud) * [Install the client CLI](#install-the-client-cli) * [Run an example](#run-an-example) - * [Enable Persistent Function Logs (Optional)](#enable-persistent-function-logs) + * [Enable Persistent Function Logs (Optional)](#enable-persistent-function-logs-optional) + * [Use the web based Fission-ui (Optional)](#use-the-web-based-fission-ui-optional) ## Running Fission on your Cluster @@ -166,3 +167,19 @@ particular pod: $ fission function logs --name hello --pod ``` + +### Use the web based Fission-ui (Optional) + +[Fission-ui](https://github.com/fission/fission-ui) is the ui for fission maintained by the community. +It allows users to observe and manage fission. It also provides a simple online development environment for serverless functions. + +To setup Fission-ui with fission in k8s is simple: + +```bash + # After Fission deployed + $ kubectl create -f https://raw.githubusercontent.com/fission/fission-ui/master/docker/fission-ui.yaml +``` + +Then open `http://node-ip:31319` to use Fission-ui. + +For more infomation, please check out [Fission-ui Readme](https://github.com/fission/fission-ui/blob/master/README.md).