This is an automated email from the ASF dual-hosted git repository.
dgrove 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 a10b138 Remove separate wskdeploy executable from ow-utils (#4393)
a10b138 is described below
commit a10b138e8ac1733b26ccfb01dc4a2cf5b36862d9
Author: David Grove <[email protected]>
AuthorDate: Mon Mar 25 17:37:50 2019 -0400
Remove separate wskdeploy executable from ow-utils (#4393)
wskdeploy is now distributed as a subcommand of wsk (wsk project),
so no need to include a wskdeploy executable.
---
tools/ow-utils/Dockerfile | 5 -----
tools/ow-utils/README.md | 2 +-
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/tools/ow-utils/Dockerfile b/tools/ow-utils/Dockerfile
index 1a92aec..bf49481 100644
--- a/tools/ow-utils/Dockerfile
+++ b/tools/ow-utils/Dockerfile
@@ -35,11 +35,6 @@ RUN wget -q
https://github.com/apache/incubator-openwhisk-cli/releases/download/
tar xzf OpenWhisk_CLI-$WHISK_CLI_VERSION-linux-amd64.tgz -C /usr/local/bin
wsk && \
rm OpenWhisk_CLI-$WHISK_CLI_VERSION-linux-amd64.tgz
-# # Install `wskdeploy` cli in /usr/local/bin
-RUN wget -q
https://github.com/apache/incubator-openwhisk-wskdeploy/releases/download/$WHISKDEPLOY_CLI_VERSION/openwhisk_wskdeploy-$WHISKDEPLOY_CLI_VERSION-linux-amd64.tgz
&& \
- tar xzf openwhisk_wskdeploy-$WHISK_CLI_VERSION-linux-amd64.tgz -C
/usr/local/bin wskdeploy && \
- rm openwhisk_wskdeploy-$WHISK_CLI_VERSION-linux-amd64.tgz
-
COPY wskutil.py /bin
COPY wskprop.py /bin
COPY wskadmin /bin
diff --git a/tools/ow-utils/README.md b/tools/ow-utils/README.md
index c27f264..de47ac9 100644
--- a/tools/ow-utils/README.md
+++ b/tools/ow-utils/README.md
@@ -25,4 +25,4 @@ for OpenWhisk using most of the tools that are used in the
project.
It includes a JDK8, python/ansible, nodejs, and standard packages
such as bash, git, wget, curl, and docker.
-It also includes the `wsk`, `wskdeploy` and `wskadmin` CLIs.
+It also includes the `wsk` and `wskadmin` CLIs.