This is an automated email from the ASF dual-hosted git repository.
pdesai pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-release.git
The following commit(s) were added to refs/heads/master by this push:
new ac66277 Update the instrcutions for the release 0.9.0 (#219)
ac66277 is described below
commit ac6627700fd89cfae08a6e8e18f8ab1c65d1ad1d
Author: Vincent <[email protected]>
AuthorDate: Thu Jul 5 16:38:29 2018 -0400
Update the instrcutions for the release 0.9.0 (#219)
This PR fixes some minor issues in the documents, by changing to use
the correct path of the wsk CLI, asking users to restart the local
machine, adding the expected message for signatue verification, etc.
---
releases/0.9.0-incubating/INSTALL.md | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/releases/0.9.0-incubating/INSTALL.md
b/releases/0.9.0-incubating/INSTALL.md
index 0279906..6623be4 100644
--- a/releases/0.9.0-incubating/INSTALL.md
+++ b/releases/0.9.0-incubating/INSTALL.md
@@ -64,6 +64,20 @@ Download the
[signature](https://dist.apache.org/repos/dist/dev/incubator/openwh
gpg --verify openwhisk-0.9.0-incubating-sources.tar.gz.asc
openwhisk-0.9.0-incubating-sources.tar.gz
```
+You should receive the output messages similar to the following:
+
+```
+gpg: Signature made <time to generate the key> using RSA key ID <key ID>
+gpg: Good signature from "Release manager's name (Release manager of
OpenWhisk) <Release manager's Email address>"
+```
+
+It is acceptable that gpg command pops-up some additional warning messages:
+
+```
+gpg: WARNING: This key is not certified with a trusted signature!
+gpg: There is no indication that the signature belongs to the owner.
+```
+
# Unpack the release
Once you have verified the artifact checksums, unzip and extract the source
code from the file `"openwhisk-0.9.0-incubating-sources.tar.gz"`. This will
yield a directory called `"incubator-openwhisk-0.9.0-incubating"` on your local
machine.
@@ -146,6 +160,7 @@ brew install gradle
After running the script above, you should have all you need to install
OpenWhisk. Normally there should be no error, but it
some error messages pop-up, please [log an
issue](https://github.com/apache/incubator-openwhisk/issues) for the OpenWhisk
community to assist you.
+We suggest you restart your local machine to make sure all the packages have
been well configured.
## Build the source code
@@ -202,10 +217,10 @@ please [log an
issue](https://github.com/apache/incubator-openwhisk/issues) for
## Run OpenWhisk
-The easiest way to try out OpenWhisk is to use OpenWhisk CLI. Please find the
configuration [steps
here](https://github.com/apache/incubator-openwhisk/blob/master/docs/cli.md).
Briefly, you can configure the CLI with the following command once you have
deployed OpenWhisk locally:
+Make sure you are in the `$OPENWHISK_HOME` directory. The easiest way to try
out OpenWhisk is to use OpenWhisk CLI. Please find the configuration [steps
here](https://github.com/apache/incubator-openwhisk/blob/master/docs/cli.md).
Briefly, you can configure the CLI with the following command once you have
deployed OpenWhisk locally:
```
-wsk property set --apihost 172.17.0.1 --auth $(cat
${OPENWHISK_HOME}/ansible/files/auth.guest)
+bin/wsk property set --apihost 172.17.0.1 --auth $(cat
${OPENWHISK_HOME}/ansible/files/auth.guest)
```
Run the following command to invoke a built in "echo" action that returns the
received input parameters as its result: