{"id":19876777,"url":"https://github.com/lewuathe/storm-cookbook","last_synced_at":"2026-03-02T09:03:38.035Z","repository":{"id":25950767,"uuid":"29392379","full_name":"Lewuathe/storm-cookbook","owner":"Lewuathe","description":"Chef cookbook for storm","archived":false,"fork":false,"pushed_at":"2017-02-13T12:20:35.000Z","size":76,"stargazers_count":8,"open_issues_count":3,"forks_count":12,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-10T13:05:37.533Z","etag":null,"topics":["chef","cookbook","storm"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Lewuathe.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-01-17T13:45:40.000Z","updated_at":"2022-01-09T13:18:33.000Z","dependencies_parsed_at":"2022-08-24T14:18:02.829Z","dependency_job_id":null,"html_url":"https://github.com/Lewuathe/storm-cookbook","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/Lewuathe/storm-cookbook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lewuathe%2Fstorm-cookbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lewuathe%2Fstorm-cookbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lewuathe%2Fstorm-cookbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lewuathe%2Fstorm-cookbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lewuathe","download_url":"https://codeload.github.com/Lewuathe/storm-cookbook/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lewuathe%2Fstorm-cookbook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29996288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chef","cookbook","storm"],"created_at":"2024-11-12T16:34:17.122Z","updated_at":"2026-03-02T09:03:38.000Z","avatar_url":"https://github.com/Lewuathe.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"storm-cookbook [![Build Status](https://travis-ci.org/Lewuathe/storm-cookbook.svg?branch=master)](https://travis-ci.org/Lewuathe/storm-cookbook) ![storm-cluster](https://img.shields.io/cookbook/v/storm-cluster.svg) ![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)\n==============\n\nThis is a chef cookbook for [apache storm](http://storm.apache.org/)\n\nDownload\n----------\n[storm-cluster: Chef Supermarket](https://supermarket.chef.io/cookbooks/storm-cluster)\n\nRequirements\n------------\nChef: 11.18.0+\njava\n\nWhen you run this cookbook on debian platform, you should run also `apt::default`  recipe before storm recipes.\n\nAttributes\n----------\n\n#### storm::default\n\n|Key|Type|Description|Default|\n|:---|:---|:---|:---|\n|['storm']['package']|String|Storm package name for constructing storm cluster|apache-storm-0.10.0-SNAPSHOT|\n|['storm']['version']|String|Storm version|0.10.0-SNAPSHOT|\n|['storm']['install_dir']|String|Storm package install directory|/usr/share/storm|\n|['storm']['install_method']|String|Set to remote_file to download from storm.apache.org|cookbook_file|\n\n\nAll storm.yaml options are supported through the node['storm']['storm_yaml'] not object.  See the attributes/storm_yaml.rb for more details.\n\nAt a minimum you will need create a role/environment/wrapper with the following options:\n\n\u003cpre\u003e\n\"storm\": {\n  \"storm_yaml\": {\n    \"nimbus.host\": \"nimbus.example.com\",\n    \"storm.zookeeper.servers\": [\n      \"zookeeper1.example.com\"\n    ]\n  }\n}\n\u003c/pre\u003e\n\nUsage\n-----\nFirst you have to add your storm package under `files/default` as tar.gz format in default `install_method`.\n\n```\n$ cp \u003cyour storm package\u003e cookbooks/storm-cluster/files/default/\n```\n\nIf you change `install_method` to `remote_file`, the package will be downloaded automatically.\n\n## Recipes\n\ne.g.\nJust include `storm` in your node's `run_list`:\n\n### storm::nimbus\nFor nimbus node\n```json\n{\n  \"name\":\"nimbus_host\",\n  \"run_list\": [\n    \"storm::nimbus\"\n  ]\n}\n```\n\n### storm::supervisor\nFor supervisor node\n```json\n{\n  \"name\":\"supervisor_host\",\n  \"run_list\": [\n    \"storm::supervisor\"\n  ]\n}\n```\n\n### storm::drpc\nFor DRPC server\n```json\n{\n  \"name\": \"drpc_host\",\n  \"run_list\": [\n    \"storm::drpc\"\n  ]\n}\n```\n\nContributing\n------------\n\n1. Fork the repository on Github\n2. Create a named feature branch (like `add_component_x`)\n3. Write your change\n4. Write tests for your change (if applicable)\n5. Run the tests, ensuring they all pass\n6. Submit a Pull Request using Github\n\nLicense and Authors\n-------------------\nAuthors:\n* Kai Sasaki([Lewuathe](https://github.com/Lewuathe))\n* Bill Warner([TD-4242](https://github.com/TD-4242))\n\n\nThis cookbook is distributed under [MIT License](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flewuathe%2Fstorm-cookbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flewuathe%2Fstorm-cookbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flewuathe%2Fstorm-cookbook/lists"}