You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2020/05/10 12:29:18 UTC

[openwhisk] branch master updated: Add jq to ow-utils image (#4901)

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/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 18bbac5  Add jq to ow-utils image (#4901)
18bbac5 is described below

commit 18bbac5bfa12f852f016536960d9b29a5c0198d9
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Sun May 10 08:28:59 2020 -0400

    Add jq to ow-utils image (#4901)
    
    Add the jq cli to the ow-utils to enable easy parsing of
    results curls against the Kubernetes API server.  This will
    simplify the definition of init containers used to wait
    for services to be ready before dependent pods are started.
---
 tools/ow-utils/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/ow-utils/Dockerfile b/tools/ow-utils/Dockerfile
index 835c004..105c644 100644
--- a/tools/ow-utils/Dockerfile
+++ b/tools/ow-utils/Dockerfile
@@ -24,6 +24,7 @@ ENV WHISKDEPLOY_CLI_VERSION latest
 
 RUN apt-get update && apt-get install -y \
   git \
+  jq \
   libffi-dev \
   nodejs \
   npm \