Merge env var section to setup

This commit is contained in:
Soam Vasani
2016-11-30 14:13:00 -08:00
parent 3aa0c2e803
commit 460db87bd7
+9 -22
View File
@@ -99,15 +99,11 @@ and 31314.
$ kubectl create -f http://fission.io/fission-nodeport.yaml $ kubectl create -f http://fission.io/fission-nodeport.yaml
``` ```
``` Set FISSION_URL and FISSION_ROUTER environment variables FISSION_URL
$ kubectl --namespace fission get services should be prefixed with a `http://`. FISSION_URL is used by the
``` fission CLI to find the server. (FISSION_ROUTER is only needed for
the examples below to work.) Below is an example for Minikube with
Save the external IP addresses of controller and router services in NodePort.
FISSION_URL and FISSION_ROUTER, respectively. FISSION_URL should be
prefixed with a `http://`. FISSION_URL is used by the fission CLI to
find the server. (FISSION_ROUTER is only needed for the examples
below to work.) Below is an example for Minikube with NodePort.
``` ```
$ export FISSION_ROUTER=$(minikube ip):31314 $ export FISSION_ROUTER=$(minikube ip):31314
@@ -126,25 +122,16 @@ LoadBalancer service type, use these commands:
$ kubectl create -f http://fission.io/fission-cloud.yaml $ kubectl create -f http://fission.io/fission-cloud.yaml
``` ```
Wait for services to get IP addresses (check this with ```kubectl Save the external IP addresses of controller and router services in
--namespace fission get svc```). Then: FISSION_URL and FISSION_ROUTER, respectively. Wait for services to
get IP addresses (check this with ```kubectl --namespace fission get
svc```). Then:
``` ```
$ export FISSION_URL=http://$(kubectl --namespace fission get svc controller -o=jsonpath='{..ip}') $ export FISSION_URL=http://$(kubectl --namespace fission get svc controller -o=jsonpath='{..ip}')
$ export FISSION_ROUTER=$(kubectl --namespace fission get svc router -o=jsonpath='{..ip}') $ export FISSION_ROUTER=$(kubectl --namespace fission get svc router -o=jsonpath='{..ip}')
``` ```
### Set fission URLs
Save the external IP addresses of controller and router services in
FISSION_URL and FISSION_ROUTER, respectively. FISSION_URL should be
prefixed with a `http://`. FISSION_URL is used by the fission CLI to
find the server. (FISSION_ROUTER is only needed for the examples
below to work.) Below is an example for Minikube with NodePort.
### Install the client CLI ### Install the client CLI
``` ```