Added AWS to install cloud setup (#392)

Add AWS instructions to setup commands, since AWS only provides service hostname, not IP.
This commit is contained in:
Josh Kelly
2017-11-15 12:49:19 -08:00
committed by Soam Vasani
parent 8b40ad0b33
commit b2883a30de
@@ -149,6 +149,13 @@ FISSION_URL and FISSION_ROUTER, respectively. Wait for services to
get IP addresses (check this with ```kubectl --namespace fission get get IP addresses (check this with ```kubectl --namespace fission get
svc```). Then: svc```). Then:
##### AWS
```
$ export FISSION_URL=http://$(kubectl --namespace fission get svc controller -o=jsonpath='{..hostname}')
$ export FISSION_ROUTER=$(kubectl --namespace fission get svc router -o=jsonpath='{..hostname}')
```
##### GCP
``` ```
$ 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}')