apache / openwhisk

Apache OpenWhisk is an open source serverless cloud platform
https://openwhisk.apache.org/
Apache License 2.0
6.5k stars 1.16k forks source link

Openwhisk show no packages were installed on both guest as well as whisk system. #4931

Closed ghost closed 4 years ago

ghost commented 4 years ago

can anyone please tell me how to install whisk package like alarm, slack, kafka etc in windows machine. I started openwhisk using below command java -jar openwhisk-standalone.jar --all --data-dir D:\whisk -v.

everything started correctly and working fine, but could not find any whisk packages. could any one let me know how to install those packages in windows machine locally.

rabbah commented 4 years ago

It would be convenient to add an option to standalone openwhisk ton install the action catalogs. To install the packages, you can follow the instructions from the samples catalog.

git clone https://github.com/apache/openwhisk-catalog.git
cd openwhisk-catalog
./packages/installCatalogUsingWskdeploy.sh 789c46b1-71f6-4ed5-8c54-816aa4f8c502:abczO3xZCLrMN6v2BKK1dXYFpXlPkccOFqm12CdAsMgRU4VrNZ9lyGVCGuMDGIwP http://localhost:3233

If you want to run the alarms or kafka service provider, there is more setup required as those have to startup microservices (in additional containers) to run the feed providers. These are also not part of the standalone bring up process at this point.

Contributions are welcomed.

ghost commented 4 years ago

Thanks for your response. Openwhisk Kubernetes deploy servered my requirements.