2020-03-03 06:16:28 UTC - Rekha: thank you.. I'll give a try,
Error is:: psycopg2 module not found.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583216188110700?thread_ts=1582960777.087700&cid=C3TPCAQG1
----
2020-03-03 07:49:15 UTC - Ali Shahidi: Yes, I tried it but still it sends the 
encrypted massage.
��9!�TY��y�q��޶����8J�����OR�7< �/�0�+�,̨̩�� ��
��/5�
J
        localhost

Is there anyway to send the post massage to the server without any encryption?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583221755110900?thread_ts=1582966242.092000&cid=C3TPCAQG1
----
2020-03-03 08:52:08 UTC - Ali Shahidi: If you could help me to find the 
username and the password of the localhost api my problem will be solved. ( 
<https://localhost/api/v1/namespaces/_/actions/> )
I could not find the username and password of it in any file to post the 
request in python. ( I used the make quick-start for OpenWhisk deployment. )
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583225528111100?thread_ts=1582966242.092000&cid=C3TPCAQG1
----
2020-03-03 09:15:31 UTC - Pieter de Bot: Hey @Shawn Black, This is the command 
I use to deploy my action. `wsk action update getRecipes out/actions.zip --main 
OpenWhiskActions::OpenWhiskActions.GetRecipesHandler::Main --kind dotnet:2.2`
Assembly: OpenWhiskActions
Namespace: OpenWhiskActions
Class: GetRecipesHandler
Method: Main

Also as you can can see in the command it's packaged as a zip.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583226931111300?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 14:40:46 UTC - Shawn Black: That all looks correct — how are you 
packaging your zip file?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583246446111700?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 14:43:00 UTC - Pieter de Bot: How do you mean how am I packaging my 
zip file?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583246580111900?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 15:14:48 UTC - Shawn Black: When you want to publish a .NET project 
to OpenWhisk, you need to make sure it is compiled and all required assemblies 
are in a single zip file
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583248488112300?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 15:16:19 UTC - Shawn Black: `dotnet publish` *should* accomplish 
compiling and bringing all of the assemblies together in a single path. After 
that you can zip that directory.
```dotnet publish -c Release -o out
cd out
zip -r -0 actions.zip *```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583248579112500?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 15:16:34 UTC - Pieter de Bot: I used
```dotnet publish -c Release -o out
cd out
zip -r -0 helloDotNet.zip *```
Like stated here: 
<https://github.com/apache/openwhisk/blob/master/docs/actions-dotnet.md>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583248594112700?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 15:17:38 UTC - Shawn Black: Just out of curiosity, did you try the 
Getting Started example on your openwhisk deployment?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583248658112900?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 15:18:36 UTC - Shawn Black: Also — I just thought of this — what 
version of .NET Core are you building this with?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583248716113200?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 15:19:10 UTC - Shawn Black: Framework version, runtime version
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583248750113400?thread_ts=1583143845.105600&cid=C3TPCAQG1
----
2020-03-03 18:31:39 UTC - Markus Thömmes: &gt; Skipping upload of perf logs to 
conserve space
nooooo
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583260299113800?thread_ts=1583260299.113800&cid=C3TPCAQG1
----
2020-03-03 18:53:52 UTC - Dave Grove: sorry.  its because we have no automated 
way to remove old logs.   uploading the perf logs means we run out of space and 
start not uploading anything every couple of weeks
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583261632113900?thread_ts=1583260299.113800&cid=C3TPCAQG1
----
2020-03-03 19:37:27 UTC - Jack Sheehan: Hi guys.

Following the docs for deploying on GKE. I'm running into a problem with 
Openwhisk being unable to install the packages as found in troubleshooting 
guide. Seems my apiHost isn't resolvable and it's timing out. I'm using a 
domain I own, and when I do host 'domain name' it returns the Google IP I've 
set it to on Google's Network services.

First time using a cloud service so I'm quite stumped, and I'm not too 
experienced with Kubernetes.

```ingress:
    apiHostName: jacksheehan.dev
    apiHostPort: 443
    apiHostProto: https
    type: Standard
    domain: jacksheehan.dev```
That's what I have in mycluster.yaml
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583264247118000?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 19:52:50 UTC - Bilal: as far as I know the standard ingress is 31001.
You also might need a load balancer in front of your kubernetes cluster and 
have that point to the OpenWhisk nginx
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583265170118100?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 19:53:52 UTC - Jack Sheehan: Thanks Bilal, I'll give it a try.

As for the above settings, I copied them from the docs 
<https://github.com/apache/openwhisk-deploy-kube/blob/master/docs/k8s-google.md#configuring-openwhisk>
I'll give 31001 a go too.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583265232118300?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 19:57:39 UTC - Bilal: ah, I missed the part about GKE, hosted 
kubernetes
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583265459118600?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:01:07 UTC - Bilal: 
<https://github.com/apache/openwhisk-deploy-kube/blob/master/docs/troubleshooting.md#install-packages-error-error-package-update-failed>
 Is this what you are referring to in the troubleshooting guide?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583265667118800?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:02:56 UTC - Jack Sheehan: Yes it is! I don't know much about 
Loadbalancers etc (still a student, it's not covered in my course really). If 
my problem is that the dns isn't exposed, would making a load balancer to 
expose it (so that ingress can resolve it) solve these issues?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583265776119000?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:38:24 UTC - Bilal: My understanding is that there is an ingress 
into OpenWhisk nginx pod, but since the deployment lives within a kubernetes 
cluster, you also need an ingress into your cluster as well.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583267904119200?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:39:35 UTC - Bilal: did you try the kubctl command in 
troublesshooting? you might have to configure your kubectl to point to the 
cloud cluster
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583267975119400?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:40:39 UTC - Jack Sheehan: I'm using Google's cloud shell so 
that's all taken care of afaik
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583268039119600?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:41:06 UTC - Jack Sheehan: I'll look into ingressing into the 
cluster and see how I get on with that. Hopefully it works :crossed_fingers:
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583268066119800?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:41:16 UTC - Jack Sheehan: Thank you Bilal
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583268076120000?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 20:43:20 UTC - Bilal: Good luck, you should also have a bit more in 
your mycluster.yaml if you followed the instructions above
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583268200120200?thread_ts=1583264247.118000&cid=C3TPCAQG1
----
2020-03-03 23:41:46 UTC - Kostis Kaffes: Hey, is there a quick way to kill 
*all* activations using wsk cli?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583278906121100
----
2020-03-03 23:48:35 UTC - Rodric Rabbah: no there isn’t 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583279315121400
----
2020-03-03 23:49:13 UTC - Rodric Rabbah: there’s no way to stop any activation 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583279353121700
----
2020-03-03 23:51:07 UTC - Kostis Kaffes: Thanks! I will just clean and 
re-deploy then.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583279467122500
----
2020-03-03 23:53:04 UTC - Brendan Doyle: Is there any documentation or advice 
on upgrading controllers and invokers to a later commit without downtime? My 
concern is first updating the controllers and then incompatibility with 
invokers until they're upgraded as well.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1583279584123800?thread_ts=1583279584.123800&cid=C3TPCAQG1
----

Reply via email to