2019-07-08 08:31:06 UTC - Roberto Diaz: I haven't experience with kubernetes 
deploy but I think that you can mount it using kubernetes, some expert will 
give you more light about this :slightly_smiling_face:

Regarding connections to other services, it works like a charm. I have 
connected my local docker OpenWhisk with third party services even with AWS 
services such as DynamoDb or S3.

You can develop your scripts in a full range of languages and python is one of 
them.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562574666250400?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:34:34 UTC - Pepi Paraskevoulakou: thank you for your answer ! so 
did you followed github’s instructions to deploy whisk?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562574874250800?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:35:42 UTC - Roberto Diaz: I have used the local devtools
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562574942251000?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:35:43 UTC - Roberto Diaz: 
<https://github.com/apache/incubator-openwhisk-devtools/tree/master/docker-compose>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562574943251200?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:36:43 UTC - Pepi Paraskevoulakou: so you deploy it in a vm only 
with these instructions ?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575003251400?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:37:25 UTC - Roberto Diaz: yep, simply with `make quick start` you 
get the full system working on docker
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575045251600?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:38:40 UTC - Pepi Paraskevoulakou: thank you! a few questions 
more… did you  wrote functions and invoked them after installation?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575120251800?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:41:09 UTC - Roberto Diaz: yep. You simply need to develop your 
functions and then using a local CLI application you need to create your 
actions inside you local openwhisk instance.

It is really easy, it depends on which language have you chosen but it is 
always something like:
`wsk action create action_name your_action_file.xx` and some additional 
parameters but the essence is that.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575269252000?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:42:41 UTC - Roberto Diaz: there are some useful tutorials in the 
@James Thomas's blog <http://jamesthom.as/>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575361252200?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:42:56 UTC - Pepi Paraskevoulakou: and if you want to store 
results somewhere? did you connect the whisk with a NOSQL db?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575376252500?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:43:03 UTC - Pepi Paraskevoulakou: thank you @Roberto Diaz !!!!!
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575383252700?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:44:57 UTC - Roberto Diaz: yep, I develop an IoT application and I 
stored the measurements in a DynamoDb. Here is a medium article talking about 
the project
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575497252900?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:44:58 UTC - Roberto Diaz: 
<https://medium.com/the-theam-journey/hands-on-iot-applications-with-openwhisk-and-rust-acb9ef5bc166>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562575498253100?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:54:19 UTC - Pepi Paraskevoulakou: very helpful your article! 
congrats for your work! i wll keep an eye on it ! actually i would like to 
combine machine learning with openwhisk (out of the box) but my worries are 
about the dataset for the training and if i have to store it somewhere or the 
model that is trained
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562576059253400?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 08:55:16 UTC - Pepi Paraskevoulakou: I am in eraly readings for 
whisk right now and next week i have arrangement with my professor in order to 
define the project of my thesis using whisk
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562576116253600?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:17:38 UTC - James Thomas: @Pepi Paraskevoulakou Morning Pepi - 
I’ve done lots of work with ML models in OpenWhisk before. Have a look at these 
blog posts: <http://jamesthom.as/blog/categories/machine-learning/>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577458253800?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:18:23 UTC - James Thomas: if you have pre-trained models - you 
can build them into the runtime image or pull from an object store.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577503254700?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:18:49 UTC - Pepi Paraskevoulakou: Thank you but did you 
implemented them out of ibm cloud? Only with OpenWhisk
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577529255400?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:18:53 UTC - James Thomas: here’s another example: 
<http://jamesthom.as/blog/2017/08/04/large-applications-on-openwhisk/>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577533255600?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:19:03 UTC - James Thomas: I ran them on IBM Cloud Functions 
(which is just Apache OpenWhisk)
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577543255900?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:19:26 UTC - James Thomas: IBM Cloud Fns is just a “managed” 
instance of the platform.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577566256500?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:20:20 UTC - Pepi Paraskevoulakou: Do you know if I have 
pretrained model and I deploy OpenWhisk in my local vm machine if I can 
implement machine learning? 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577620257600?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:20:42 UTC - James Thomas: Have you installed the kafka trigger 
feed provider package? That can then listen to any kafka source: 
<https://github.com/apache/incubator-openwhisk-package-kafka>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577642257800?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 09:22:06 UTC - James Thomas: see the issue (and solution) here: 
<https://github.com/confluentinc/confluent-kafka-python/issues/45>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577726258000?thread_ts=1562456874.243600&cid=C3TPCAQG1
----
2019-07-08 09:22:18 UTC - James Thomas: yes - definitely.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577738258200?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:22:53 UTC - James Thomas: you can run the pre-trained model via 
an openwhisk action (but it will only be able to use CPU for model scoring). 
OpenWhisk does not have GPU support.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562577773258900?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:27:00 UTC - Pepi Paraskevoulakou: I see such as image 
processing... but I f I want to do text analytics in tweets using a pre trained 
model logistic regression I ll be fine I think...
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562578020262300?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:28:40 UTC - James Thomas: yeah absolutely.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562578120262500?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 09:33:27 UTC - Roberto Diaz: If it can help, I'm planning to use 
<https://algorithmia.com/> to have ML features inside Openwhisk in a very easy 
way.

They provide an API and you can call all your ML stuff directly from OpenWhisk.

A colleague of mine has used Algorithmia to performs feelings detections in 
website comments and it works nicely
partyparrot : Michael Schmidt
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562578407262700?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 10:15:19 UTC - James Thomas: neat.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562580919263000?thread_ts=1562516478.250200&cid=C3TPCAQG1
----
2019-07-08 11:44:02 UTC - Michael Schmidt: Does wsk invoke the action from 
inside the cluster? My openwhisk is setup with the Kubernetes Container 
Factory, so I would think that the message would be produced from inside the 
cluster?

```
wsk -i action invoke /messaging/kafkaProduce -p brokers 
"[\"my-confluent-oss-cp-kafka-headless:9092\", 
\"my-confluent-oss-cp-kafka-headless:9093\"]" -p topic my-confluent-oss-topic 
-p value "This is the content of my message"
error: Unable to invoke action 'kafkaProduce': The supplied authentication is 
not authorized to access 'messaging/kafkaProduce'. (code 
HrmUPrM36dsDfuA6GsdtBVNOhZDy3txV)
```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562586242263200?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 11:45:17 UTC - Michael Schmidt: Going to go down the route of trying 
the openwhisk trigger, since that is what I really want. If I can't get that to 
work, I'll ask more questions on this thread. I guess I'd just change out the 
docker command at the end to manually make the dep?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562586317263500?thread_ts=1562456874.243600&cid=C3TPCAQG1
----
2019-07-08 11:50:14 UTC - Michael Schmidt: `wsk -i property get` returns 
successfully
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562586614263800?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 12:03:21 UTC - James Thomas: have you installed the package 
catalogue?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562587401264000?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 12:05:36 UTC - Michael Schmidt: No sorry I must have missed that 
step in the README, I can look into that install now.

It looks like creating a trigger worked successfully though pre package install?

```
wsk -i trigger create MyKafkaTrigger -f /whisk.system/messaging/kafkaFeed -p 
brokers "[\"my-confluent-oss-cp-kafka-headless:9092\", 
\"my-confluent-oss-cp-kafka-headless:9093\"]" -p topic my-confluent-oss-topic 
-p value "This is the content of my message"
ok: invoked /whisk.system/messaging/kafkaFeed with id 
b8297f730d2441eba97f730d2431eb71
{
    "activationId": "b8297f730d2441eba97f730d2431eb71",
    "annotations": [
        {
            "key": "path",
            "value": "whisk.system/messaging/kafkaFeed"
        },
        {
            "key": "waitTime",
            "value": 1381
        },
        {
            "key": "kind",
            "value": "nodejs:6"
        },
        {
            "key": "timeout",
            "value": false
        },
        {
            "key": "limits",
            "value": {
                "concurrency": 1,
                "logs": 10,
                "memory": 256,
                "timeout": 60000
            }
        },
        {
            "key": "initTime",
            "value": 384
        }
    ],
    "duration": 2956,
    "end": 1562586907385,
    "logs": [],
    "name": "kafkaFeed",
    "namespace": "whisk.system",
    "publish": false,
    "response": {
        "result": {
            "uuid": "eede9fa5-472c-4670-b4e3-13c01e0cdb13"
        },
        "status": "success",
        "success": true
    },
    "start": 1562586904429,
    "subject": "whisk.system",
    "version": "0.0.1"
}
```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562587536264200?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 12:06:35 UTC - Michael Schmidt: There is an install catalog.sh and 
installkafa, which first? I don't see anything on either of those scripts?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562587595264400?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 12:22:00 UTC - Michael Schmidt: Ah I got the package catalog. For 
the install Kafka script, I assume that is only if you need a kafka installed 
for you? its not required if you already have your own kafka?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562588520264600?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 13:20:56 UTC - Michael Schmidt: This part of the readme is confusing 
to me, should I be using /messaging/kafkaProduce or not?

```
wsk action list

actions
/whisk.system/messaging/messageHubProduce                              private 
python:3
/whisk.system/messagingWeb/messageHubFeedWeb                           private 
nodejs:6
/whisk.system/messaging/messageHubFeed                                 private 
nodejs:6
/whisk.system/invokerHealthTestAction0                                 private
/whisk.system/messaging/kafkaProduce                                   private 
python:3
/whisk.system/messagingWeb/kafkaFeedWeb                                private 
nodejs:6
/whisk.system/messaging/kafkaFeed                                      private 
nodejs:6
/whisk.system/cloudant/delete-attachment                               private 
nodejs:6
/whisk.system/cloudant/update-attachment                               private 
nodejs:6
/whisk.system/cloudant/read-attachment                                 private 
nodejs:6
/whisk.system/cloudant/create-attachment                               private 
nodejs:6
/whisk.system/cloudant/read-changes-feed                               private 
nodejs:6
/whisk.system/cloudant/delete-query-index                              private 
nodejs:6
/whisk.system/cloudant/delete-view                                     private 
nodejs:6
/whisk.system/cloudant/manage-bulk-documents                           private 
nodejs:6
/whisk.system/cloudant/exec-query-view                                 private 
nodejs:6
/whisk.system/cloudant/exec-query-search                               private 
nodejs:6
/whisk.system/cloudant/exec-query-find                                 private 
nodejs:6
/whisk.system/cloudant/list-query-indexes                              private 
nodejs:6
/whisk.system/cloudant/create-query-index                              private 
nodejs:6
/whisk.system/cloudant/list-design-documents                           private 
nodejs:6
/whisk.system/cloudant/list-documents                                  private 
nodejs:6
/whisk.system/cloudant/delete-document                                 private 
nodejs:6
/whisk.system/cloudant/update-document                                 private 
nodejs:6
/whisk.system/cloudant/write                                           private 
nodejs:6
/whisk.system/cloudant/read-document                                   private 
nodejs:6
/whisk.system/cloudant/read                                            private 
nodejs:6
/whisk.system/cloudant/create-document                                 private 
nodejs:6
/whisk.system/cloudant/read-updates-feed                               private 
nodejs:6
/whisk.system/cloudant/list-all-databases                              private 
nodejs:6
```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562592056264800?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 13:21:19 UTC - Michael Schmidt: ``` wsk -i action invoke 
/messaging/kafkaProduce -p brokers 
"[\"my-confluent-oss-cp-kafka-headless:9092\", 
\"my-confluent-oss-cp-kafka-headless:9093\"]" -p topic my-confluent-oss-topic 
-p value "This is the content of my message"

error: Unable to invoke action 'kafkaProduce': The supplied authentication is 
not authorized to access 'messaging/kafkaProduce'. (code 
7YMm2wQYRjj5VQ1spTkF1G4Zhfvd8hYk)
```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562592079265200?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 13:25:02 UTC - Michael Schmidt: I have my auth set to the system key 
at the moment... which I can only assume is adm?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562592302265500?thread_ts=1562454449.241600&cid=C3TPCAQG1
----
2019-07-08 14:30:10 UTC - Michael Schmidt: 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562596210265800
----
2019-07-08 14:31:01 UTC - Michael Schmidt: But I am unsure about this, I am 
happy to try the non deprecated call. I am just unsure what is suppose to 
replace the kafkaProduct call
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562596261266700?thread_ts=1562596261.266700&cid=C3TPCAQG1
----
2019-07-08 17:18:40 UTC - Saurab Joshi: Hi guys, there is no latest tag for 
controller and invoker docker images. Are there any tags we can use besides the 
hash?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562606320268400
----
2019-07-08 17:19:09 UTC - James Thomas: @Saurab Joshi tags moved from `latest` 
to `nightly` due to ASF issues
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562606349268900
----
2019-07-08 17:19:18 UTC - Saurab Joshi: oh okay
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562606358269100
----
2019-07-08 17:19:19 UTC - Saurab Joshi: thanks
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562606359269300
----
2019-07-08 19:55:13 UTC - David H. Trang: Has anyone been seeing strange issues 
with getApi lately?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562615713269900
----
2019-07-08 19:59:51 UTC - Michael Schmidt: I was having issues invoking the 
messingKafka function. No word on it yet though, I am new with it so I may be 
doing something wrong
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562615991270600
----
2019-07-08 20:00:23 UTC - Rodric Rabbah: @Michael Schmidt `-i` seems ok, looks 
like a key issue from the log message, no?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616023271100
----
2019-07-08 20:00:31 UTC - Rodric Rabbah: @David H. Trang what kind of strange 
issues
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616031271400
----
2019-07-08 20:00:54 UTC - Rodric Rabbah: ```
error: Unable to invoke action 'kafkaProduce': The supplied authentication is 
not authorized to access 'messaging/kafkaProduce'. (code 
ZdEt2XIeYXhO8FuuMZQZBbv6QCfwdPAz)

```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616054271500?thread_ts=1562596261.266700&cid=C3TPCAQG1
----
2019-07-08 20:01:07 UTC - Rodric Rabbah: does the package/action exist?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616067271700?thread_ts=1562596261.266700&cid=C3TPCAQG1
----
2019-07-08 20:02:37 UTC - David H. Trang: Its seems like alarms aren't being 
triggered but I'm getting this error from getApi:
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616157272300
----
2019-07-08 20:04:15 UTC - Rodric Rabbah: are you running your own openwhisk 
installation?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616255273000
----
2019-07-08 20:04:41 UTC - David H. Trang: ```stdout: gwUrl         : undefined
stdout: GW URL V2     : http://*.*.*.*:9000/v2
stdout: __ow_user     : whisk.system
stdout: namespace     : whisk.system
stdout: tenantInstance: undefined / openwhisk
stdout: accesstoken   : undefined
stdout: spaceguid     : undefined
stdout: basepath/name : undefined
stdout: relpath       : undefined
stdout: operation     : undefined
stdout: outputFormat  : swagger
stdout: calledAsWebAction: true
stdout: getTenants: request: 
{"followAllRedirects":true,"url":"undefined/tenants","qs":{"filter[where][namespace]":"whisk.system","filter[where][instance]":"openwhisk"},"headers":{"Accept":"application/json"}}
stdout: getTenants: response status: undefined
stderr: Error: Invalid URI "undefined/tenants"```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616281273400
----
2019-07-08 20:04:58 UTC - David H. Trang: Yes we are running our own on AWS.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616298273900
----
2019-07-08 20:08:44 UTC - David H. Trang: We use serverless to deploy our 
functions, it looks like based on the logs every time we `sls deploy` we get 
the error mentioned above.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616524274700
----
2019-07-08 20:09:43 UTC - David H. Trang: I can however invoke my function 
manually, `sls invoke -f hello` and it will run. But when I put it in a 
schedule it does not work.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616583275700
----
2019-07-08 20:14:23 UTC - Rodric Rabbah: that’s a known issue
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616863275900
----
2019-07-08 20:14:28 UTC - Rodric Rabbah: cc @James Thomas
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616868276100
----
2019-07-08 20:14:44 UTC - Rodric Rabbah: there’s a workaround - we need to fix 
that
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616884276500
----
2019-07-08 20:15:17 UTC - Rodric Rabbah: see here 
<https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562089158176500>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562616917276700
----
2019-07-08 20:17:55 UTC - Rodric Rabbah: I’ll mention this on the dev list 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562617075277100
----
2019-07-08 20:26:18 UTC - David H. Trang: Thanks for the information, I think 
there is a typo with what you show us right? Is it supposed to be 
`OW_APIGW_ACCESS_TOKEN=APIGW_ACCESS_TOKEN`?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562617578277800
----
2019-07-08 20:28:49 UTC - Rodric Rabbah: dont think so
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562617729278000
----
2019-07-08 20:32:54 UTC - David H. Trang: Hm okay I assume you make this change 
to the .wskprop file in /etc/openwhisk/docker-compose folder?
+1 : Rodric Rabbah
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562617974278900
----
2019-07-08 20:37:47 UTC - David H. Trang: Okay I will do a `make restart` again 
and try it
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618267279400
----
2019-07-08 20:40:22 UTC - Rodric Rabbah: shouldn’t have to restart
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618422279600
----
2019-07-08 20:40:29 UTC - Rodric Rabbah: just `sls deploy` again
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618429279900
----
2019-07-08 20:41:03 UTC - David H. Trang: We found out that you have to make 
the change in the /root/.wskprops
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618463280300
----
2019-07-08 20:41:10 UTC - David H. Trang: Not in the docker-compose folder
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618470280600
----
2019-07-08 20:45:52 UTC - Rodric Rabbah: it’s whatever .wskprops file is in 
effect (you can override the active props file location)
so the workaround worked?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618752281200
----
2019-07-08 20:47:11 UTC - David H. Trang: It allowed the getApi to be able to 
have a success message but it seems like the alarms are still not triggering.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618831281800
----
2019-07-08 20:47:22 UTC - David H. Trang: I'll look at the alarmsprovider logs.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618842282200
----
2019-07-08 20:49:27 UTC - David H. Trang: It is looking like if we manually 
create trigger with a cron through wsk cli, it works but the scheduler through 
sls is not working.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562618967283100
----
2019-07-08 20:50:26 UTC - Rodric Rabbah: im not too familiar with `sls` - maybe 
@James Thomas knows. you might want to open an issue in that repo, it’s not 
part of the apache project but James is a committer on both
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562619026284000?thread_ts=1562619026.284000&cid=C3TPCAQG1
----
2019-07-08 20:50:52 UTC - David H. Trang: No problem, thank you for the help.
+1 : Rodric Rabbah
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562619052284200?thread_ts=1562619026.284000&cid=C3TPCAQG1
----
2019-07-08 20:58:18 UTC - David H. Trang: @James Thomas Looking at the 
alarmsprovider logs, after deploying a schedule with sls function, 
alarmsprovider container does not pick up on the deployed function.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562619498285200
----
2019-07-08 21:06:23 UTC - David H. Trang: I'm seeing that when I `wsk trigger 
get triggername` I'm getting an error of `"error": "could not find trigger 
/whisk.system/function-instance-eco_checkEcoSleep_schedule_trigger in the 
database"` in the output.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562619983286000?thread_ts=1562619983.286000&cid=C3TPCAQG1
----
2019-07-08 22:53:10 UTC - Michael Schmidt: @Rodric Rabbah is the system key 
good enough to access this part of openwhisk?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562626390286500?thread_ts=1562626390.286500&cid=C3TPCAQG1
----
2019-07-08 22:53:20 UTC - Michael Schmidt: I will double check tomorrow
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1562626400286700
----

Reply via email to