{"id":16454035,"url":"https://github.com/auser/poolparty","last_synced_at":"2025-05-16T02:05:42.962Z","repository":{"id":410311,"uuid":"29471","full_name":"auser/poolparty","owner":"auser","description":"Run a self-healing, auto-scaled and monitored cloud simply, in the clouds, on nearly any hardware, such as EC2, eucalyptus and vmware","archived":false,"fork":false,"pushed_at":"2023-04-14T16:26:14.000Z","size":141219,"stargazers_count":375,"open_issues_count":31,"forks_count":51,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-14T07:51:24.682Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.poolpartyrb.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"jeromeetienne/jquery-qrcode","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/auser.png","metadata":{"files":{"readme":"README.rdoc","changelog":null,"contributing":null,"funding":null,"license":"License.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2008-06-28T04:58:23.000Z","updated_at":"2025-02-17T16:41:14.000Z","dependencies_parsed_at":"2023-07-05T15:03:07.668Z","dependency_job_id":null,"html_url":"https://github.com/auser/poolparty","commit_stats":{"total_commits":4325,"total_committers":42,"mean_commits":"102.97619047619048","dds":0.4194219653179191,"last_synced_commit":"8b4af051833addd84f4282bcedbdffa814d8e033"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auser%2Fpoolparty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auser%2Fpoolparty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auser%2Fpoolparty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auser%2Fpoolparty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/auser","download_url":"https://codeload.github.com/auser/poolparty/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254453646,"owners_count":22073616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-11T10:17:48.860Z","updated_at":"2025-05-16T02:05:42.928Z","avatar_url":"https://github.com/auser.png","language":"Ruby","readme":"= PoolParty\n\nhttp://poolpartyrb.com\n\n== DESCRIPTION:\n\nPoolParty makes cloud provisioning and management easy. PoolParty provides a unified interface for defining and managing cloud infrasturcure on different cloud providers (just Ec2 for now).\n\nCode your cloud! \n\n== SYNOPSIS:\n\nPoolParty is written with the intention of being as application-agnostic as possible. It installs only the basic \nrequired software to glue the cloud together on the instances as listed below.\n\n== Quickstart\n\nFor instance, to start a basic cloud, let's write one:\n\n  pool \"demo\" do\n    cloud \"app\" do\n      instances 2..10\n      using :ec2\n      autoscale do      \n        trigger :lower_threshold =\u003e 0.3, :upper_threshold =\u003e 1.0, :measure =\u003e :cpu\n      end\n      security_group do\n        authorize :from_port =\u003e 22, :to_port =\u003e 22\n      end\n      load_balancer do\n        listener :external_port =\u003e 8080, :internal_port =\u003e 8080, :protocol =\u003e 'tcp'\n      end\n    end\n  end\n  \nSimply by issuing the command:\n  \n  cloud start\n  \nThis will create an ec2 auto scaling group that will launch the minimum_instances (2 in this case,) inside a security group. The default naming of most objects, such as security_groups, auto scaling groups, launch_configurations, load_balancers and keypairs follow the poolname-cloudname convention.\nThere are a number of commands PoolParty offers to interact with your cloud. They include:\n\n* \u003ctt\u003ecloud start\u003c/tt\u003e\n* \u003ctt\u003ecloud terminate\u003c/tt\u003e\n* \u003ctt\u003ecloud reboot\u003c/tt\u003e\n* \u003ctt\u003ecloud configure\u003c/tt\u003e\n* \u003ctt\u003ecloud compile\u003c/tt\u003e\n* \u003ctt\u003ecloud console\u003c/tt\u003e\n* \u003ctt\u003ecloud expand\u003c/tt\u003e\n* \u003ctt\u003ecloud contract\u003c/tt\u003e\n* \u003ctt\u003ecloud list\u003c/tt\u003e\n* \u003ctt\u003ecloud show\u003c/tt\u003e\n* \u003ctt\u003ecloud ssh\u003c/tt\u003e\n* \u003ctt\u003ecloud run\u003c/tt\u003e\n\nClouds are distinguished by security groups. If a security group is not specified in your cloud block, one will be created based on the naming convention poolname-cloudname.\n\n== Extending\n\nTo add a cloud_provider, there are four methods that need to be implemented. Simply sublcass the CloudProviders module and require it in your clouds.rb (or commit it back to PoolParty). Those four methods are:\n\n* \u003ctt\u003erun_instance\u003c/tt\u003e\n* \u003ctt\u003eterminate_instance\u003c/tt\u003e\n* \u003ctt\u003edescribe_instances\u003c/tt\u003e\n* \u003ctt\u003edescribe_instance\u003c/tt\u003e\n\n== Examples\nCheckout the [examples](examples/) directory and its README for some more ideas and examples.\n\nThat's it!\n\nMore documentation can be found at the site: \u003ca href=\"http://poolpartyrb.com\"\u003ehttp://poolpartyrb.com\u003c/a\u003e.\n\n== REQUIREMENTS:\n\n* Ruby\n\n== INSTALL:\nfrom gemcutter.org;\n\n    sudo gem install poolparty\n\n== LICENSE:\n\n(The MIT License)\n\nCopyright (c) 2009 Ari Lerner, CloudTeam\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauser%2Fpoolparty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauser%2Fpoolparty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauser%2Fpoolparty/lists"}