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 2018/12/17 16:06:25 UTC

[incubator-openwhisk-deploy-kube] branch master updated: Add PHP 7.3 runtime (#397)

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-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new 11362af  Add PHP 7.3 runtime (#397)
11362af is described below

commit 11362af096752b9d1e8c172bd56b4b6a0666b295
Author: Rob Allen <ro...@akrabat.com>
AuthorDate: Mon Dec 17 16:06:20 2018 +0000

    Add PHP 7.3 runtime (#397)
    
    * Add PHP 7.3 runtime and set as default
---
 helm/openwhisk/runtimes.json | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/helm/openwhisk/runtimes.json b/helm/openwhisk/runtimes.json
index afec083..757f058 100644
--- a/helm/openwhisk/runtimes.json
+++ b/helm/openwhisk/runtimes.json
@@ -155,7 +155,7 @@
             },
             {
                 "kind": "php:7.2",
-                "default": true,
+                "default": false,
                 "deprecated": false,
                 "image": {
                     "prefix": "openwhisk",
@@ -166,6 +166,20 @@
                     "attachmentName": "codefile",
                     "attachmentType": "text/plain"
                 }
+            },
+            {
+                "kind": "php:7.3",
+                "default": true,
+                "deprecated": false,
+                "image": {
+                    "prefix": "openwhisk",
+                    "name": "action-php-v7.3",
+                    "tag": "ab65b67"
+                },
+                "attached": {
+                    "attachmentName": "codefile",
+                    "attachmentType": "text/plain"
+                }
             }
         ],
         "ruby": [