2020-01-07 03:23:03 UTC - Ning yougang: Hi, guys, i submited a WIP patch: <https://github.com/apache/openwhisk/pull/4790> here Currently, just finish its basic functions and tested in my local, worked well, but didn't add test cases. If the direction of this patch is ok, i will finish its corresponding test cases +1 : Rodric Rabbah https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578367383126500 ---- 2020-01-07 03:32:37 UTC - Ning yougang: I already sent it to mail list as well. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578367957127200 ---- 2020-01-07 06:41:48 UTC - Keerthi Kumar S R: @Rodric Rabbah can you please share the code https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578379308000100?thread_ts=1578293600.123600&cid=C3TPCAQG1 ---- 2020-01-07 14:57:42 UTC - Rodric Rabbah: <https://github.com/apache/openwhisk/compare/master...rabbah:wskadmin?expand=1> https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578409062000300?thread_ts=1578293600.123600&cid=C3TPCAQG1 ---- 2020-01-07 14:58:55 UTC - Rodric Rabbah: with this patch you can run wskadmin as a webaction
ill add another commit to automate deploying it you need to package these files into a zip https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578409135000500?thread_ts=1578293600.123600&cid=C3TPCAQG1 ---- 2020-01-07 14:59:26 UTC - Rodric Rabbah: ```#!/bin/bash SRCDIR=openwhisk/tools/admin cp "$SRCDIR/wskadmin" __main__.py cp "$SRCDIR/wskprop.py" . cp "$SRCDIR/wskutil.py" . chmod -x __main__.py``` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578409166000700?thread_ts=1578293600.123600&cid=C3TPCAQG1 ---- 2020-01-07 15:00:17 UTC - Rodric Rabbah: then you can create a web action and attach the following environment variables ```DB_USERNAME DB_PASSWORD DB_NAME DB_HOST``` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578409217001000?thread_ts=1578293600.123600&cid=C3TPCAQG1 ---- 2020-01-07 15:00:47 UTC - Rodric Rabbah: assuming you’re using https and port 443 for your couch https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578409247001300?thread_ts=1578293600.123600&cid=C3TPCAQG1 ---- 2020-01-07 19:50:19 UTC - Matt Rutkowski: Am I missing where we documented either the “web-secure” or the “concurrency” flags on actions for the CLI (and their side effects/behaviors)? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578426619003000 ---- 2020-01-07 19:53:58 UTC - Matt Rutkowski: i found only the annotation (`require-whisk-auth`) described here which is a partial result (not documented) of setting “web-secure”: <https://github.com/apache/openwhisk/blob/master/docs/annotations.md#Annotations-specific-to-web-actions> https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578426838005400 ---- 2020-01-07 19:54:52 UTC - Matt Rutkowski: and does not describe the CLI autogenerating and setting/unsetting a token if boolean is used https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578426892006000 ---- 2020-01-07 19:56:33 UTC - Matt Rutkowski: aha! https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578426993006600 ---- 2020-01-07 19:56:55 UTC - Matt Rutkowski: <https://github.com/apache/openwhisk/blob/master/docs/webactions.md#Securing-web-actions> https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578427015006800 ---- 2020-01-07 19:57:45 UTC - Matt Rutkowski: Now looking for concurrency docs. did not see any related PR or issue on PR that added it: <https://github.com/apache/openwhisk-cli/pull/383> https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578427065007500 ---- 2020-01-07 20:09:37 UTC - Matt Rutkowski: Still cannot find the docs. for `concurrency` flag and likely need to provide better linkage between the 2 docs above for `web-secure` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578427777009000 ---- 2020-01-07 21:17:52 UTC - Rodric Rabbah: dont think concurrency is documented - @Tyson Norris would know best i’d guess https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1578431872009400 ----