2020-02-27 01:43:55 UTC - Pedro Fernandez: trying to follow the openwhisk-deploy-kube guide for deployment I faced an error following the steps on the command: $ helm install owdev ./helm/openwhisk -n openwhisk -f mycluster.yaml Error: create: failed to create: namespaces "openwhisk" not found https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582767835072400?thread_ts=1582767835.072400&cid=C3TPCAQG1 ---- 2020-02-27 01:44:08 UTC - Pedro Fernandez: any clue why that could happen? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582767848072700 ---- 2020-02-27 02:35:27 UTC - Bill Zong: you should add `--namespace=openwhisk` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582770927072900?thread_ts=1582767835.072400&cid=C3TPCAQG1 ---- 2020-02-27 02:37:27 UTC - Pedro Fernandez: do you mean like: $ helm install owdev ./helm/openwhisk --namespace=openwhisk -n openwhisk -f mycluster.yaml Error: create: failed to create: namespaces "openwhisk" not found https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582771047073100?thread_ts=1582767835.072400&cid=C3TPCAQG1 ---- 2020-02-27 02:52:10 UTC - Bill Zong: `helm install helm/openwhisk --namespace=openwhisk -n owdev -f mycluster.yaml` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582771930073300?thread_ts=1582767835.072400&cid=C3TPCAQG1 ---- 2020-02-27 07:51:49 UTC - Markus Thömmes: Good morning y'all :wave: . @Rodric Rabbah reviewed and approved this bad boy yesterday. If nobody has concerns I'll merge it soon'ish <https://github.com/apache/openwhisk/pull/4841>. More reviews always welcome :slightly_smiling_face: https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582789909074300 ---- 2020-02-27 08:24:08 UTC - Ali Shahidi: Hello. I want to change how the data store in the couchDB and add one column to the action entry points but I do not know how can I change it ( I run ./gradlew common:scala :build ), can anyone help me which file should I change? I use the quick-start version. ( noob question :slightly_smiling_face: ) https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582791848077100?thread_ts=1582791848.077100&cid=C3TPCAQG1 ---- 2020-02-27 08:35:45 UTC - Keerthi Kumar S R: You need to create `openwhisk` namespace (`kubectl create namespace openwhik`) first and then deploy using that command https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582792545077200?thread_ts=1582767835.072400&cid=C3TPCAQG1 ---- 2020-02-27 15:19:06 UTC - Anuradha Natarajan: Hi, https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582816746078300 ---- 2020-02-27 15:21:32 UTC - Anuradha Natarajan: Is there a way to enable security in openwhisk? apart from securing the web-actions using the annotation require-whisk-auth? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582816892079500?thread_ts=1582816892.079500&cid=C3TPCAQG1 ---- 2020-02-27 15:37:28 UTC - Rodric Rabbah: what are you trying to do https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582817848079600?thread_ts=1582816892.079500&cid=C3TPCAQG1 ---- 2020-02-27 15:37:42 UTC - Rodric Rabbah: do you need to change the views or add a new field to the document? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582817862079800?thread_ts=1582791848.077100&cid=C3TPCAQG1 ---- 2020-02-27 15:40:49 UTC - Anuradha Natarajan: i need to pass user credentials to my action (using curl or post using https) which needs to be verified and allow access https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582818049080000?thread_ts=1582816892.079500&cid=C3TPCAQG1 ---- 2020-02-27 15:42:57 UTC - Rodric Rabbah: you wouldn’t want to use require-whisk-auth since that only checks if the user is a valid openwhisk identity
your action can receive the auth headers and then perform its own authentication and authorization are you using api gateway? an api gateway could do some oauth token validation for you https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582818177080300?thread_ts=1582816892.079500&cid=C3TPCAQG1 ---- 2020-02-27 16:03:14 UTC - Anuradha Natarajan: oh ok, so the action logic will have to take care of validating the auth headers? white_check_mark : Rodric Rabbah https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582819394080500?thread_ts=1582816892.079500&cid=C3TPCAQG1 ---- 2020-02-27 16:04:20 UTC - Anuradha Natarajan: ok thanks! https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1582819460080800?thread_ts=1582816892.079500&cid=C3TPCAQG1 ----