Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Buildout | 563 | 1 | 3 months ago | 5 | March 31, 2022 | 138 | other | Python | ||
Buildout is a deployment automation tool written in and extended with Python | ||||||||||
Wirbelsturm | 333 | 2 years ago | 2 | other | Shell | |||||
[PROJECT IS NO LONGER MAINTAINED] Wirbelsturm is a Vagrant and Puppet based tool to perform 1-click local and remote deployments, with a focus on big data tech like Kafka. | ||||||||||
Puppi | 146 | 111 | 5 months ago | 24 | April 22, 2019 | 16 | other | Puppet | ||
Puppet module to manage applications deployments and servers local management | ||||||||||
Loom | 116 | 1 | 9 years ago | 17 | May 08, 2014 | 10 | other | Python | ||
Elegant deployment with Fabric and Puppet. | ||||||||||
Drupal Lxc Vagrant Docker | 94 | 8 years ago | 2 | Puppet | ||||||
Deploy and develop on Drupal with LXC, Vagrant and Docker. Includes: nginx,php-fpm,apc,xhprof,mysql,phpmyadim,composer | ||||||||||
Vagrant | 54 | 6 years ago | 7 | apache-2.0 | Shell | |||||
All {code] by Dell EMC related Vagrant projects | ||||||||||
Leap_platform | 49 | 5 years ago | 4 | gpl-3.0 | Ruby | |||||
Server automation recipes for the LEAP Platform. Written mostly using puppet, and licensed under the GPLv3. | ||||||||||
Spark Cluster Deployment | 43 | 9 years ago | apache-2.0 | Python | ||||||
Automates Spark standalone cluster tasks with Puppet and Fabric. | ||||||||||
Kickstack | 30 | 10 years ago | 3 | November 11, 2014 | 4 | apache-2.0 | Puppet | |||
Rapid OpenStack deployment with puppet-dashboard or any other Puppet ENC | ||||||||||
Puppetlabs Peadm | 29 | 3 days ago | 23 | apache-2.0 | Puppet | |||||
A Puppet module defining Bolt plans used to automate Puppet Enterprise deployments |
Buildout is a project designed to solve 2 problems:
Application-centric assembly and deployment
Assembly runs the gamut from stitching together libraries to create a running program, to production deployment configuration of applications, and associated systems and tools (e.g. run-control scripts, cron jobs, logs, service registration, etc.).
Buildout might be confused with build tools like make or ant, but it is a little higher level and might invoke systems like make or ant to get its work done.
Buildout might be confused with systems like puppet or chef, but it is more application focused. Systems like puppet or chef might use buildout to get their work done.
Buildout is also somewhat Python-centric, even though it can be used to assemble and deploy non-python applications. It has some special features for assembling Python programs. It's scripted with Python, unlike, say puppet or chef, which are scripted with Ruby.
Repeatable assembly of programs from Python software distributions
Buildout puts great effort toward making program assembly a highly repeatable process, whether in a very open-ended development mode, where dependency versions aren't locked down, or in a deployment environment where dependency versions are fully specified. You should be able to check buildout into a VCS and later check it out. Two checkouts built at the same time in the same environment should always give the same result, regardless of their history. Among other things, after a buildout, all dependencies should be at the most recent version consistent with any version specifications expressed in the buildout.
Buildout supports applications consisting of multiple programs, with different programs in an application free to use different versions of Python distributions. This is in contrast with a Python installation (real or virtual), where, for any given distribution, there can only be one installed.
To learn more about buildout, including how to use it, see http://docs.buildout.org/.