You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2019/04/23 16:09:13 UTC

[incubator-openwhisk] branch master updated: Remove ibmcloud specific command (#4454)

This is an automated email from the ASF dual-hosted git repository.

jamesthomas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 5a2bf81  Remove ibmcloud specific command (#4454)
5a2bf81 is described below

commit 5a2bf810dc5fda2f0d184c022e5931ac65de9721
Author: Simon MacDonald <si...@gmail.com>
AuthorDate: Tue Apr 23 12:09:02 2019 -0400

    Remove ibmcloud specific command (#4454)
    
    Great job on the updated docs but I think we should remove the `ibmcloud` part from the commands as we should remain vendor agnostic.
---
 docs/actions-nodejs.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/actions-nodejs.md b/docs/actions-nodejs.md
index 9c76149..d689585 100644
--- a/docs/actions-nodejs.md
+++ b/docs/actions-nodejs.md
@@ -268,7 +268,7 @@ zip -r action.zip *
 - Create new action with action archive.
 
 ```
-ibmcloud wsk action create my-action --kind nodejs:10 action.zip
+wsk action create my-action --kind nodejs:10 action.zip
 ```
 
 #### Building custom runtime image
@@ -291,7 +291,7 @@ $ docker push <USERNAME>/custom-runtime
 - Create new action using custom runtime image.
 
 ```
-ibmcloud wsk action create my-action --docker <USERNAME>/custom-runtime action.zip
+wsk action create my-action --docker <USERNAME>/custom-runtime action.zip
 ```
 
 **Make sure the `node_modules` included in the `action.zip` does not include the same libraries folders.**