Skip to content

barkbarkuk/pallet

 
 

Repository files navigation

This is the unstable development branch. See the stable branch for production code.

Pallet is used to provision and maintain servers on cloud and virtual machine infrastructure, and aims to solve the problem of providing a consistently configured running image across a range of clouds. It is designed for use from the Clojure REPL, from clojure code, and from the command line.

  • reuse configuration in development, testing and production.
  • store all your configuration in a source code management system (eg. git), including role assignments.
  • configuration is re-used by compostion; just create new functions that call existing crates with new arguments. No copy and modify required.
  • enable use of configuration crates (recipes) from versioned jar files.

It uses jclouds to gain portable access to different cloud providers.

Documentation is available.

Support

On the mailing list, or #pallet on freenode irc.

Usage

The main documentation is on the PalletOps site.

Installation

Pallet is distributed as a jar, and is available in the sonatype repository.

Installation is with maven or your favourite maven repository aware build tool.

lein project.clj

:dependencies [[org.cloudhoist/pallet "0.8.0-alpha.3"]]
:repositories {"sonatype"
               "http://oss.sonatype.org/content/repositories/releases"}

maven pom.xml

<dependencies>
  <dependency>
    <groupId>org.cloudhoist</groupId>
    <artifactId>pallet</artifactId>
    <version>0.8.0-alpha.3</version>
  </dependency>
<dependencies>

<repositories>
  <repository>
    <id>sonatype</id>
    <url>http://oss.sonatype.org/content/repositories/releases</url>
  </repository>
</repositories>

See also

chef, and puppet are other infrastructure automation tools.

License

Licensed under EPL

Contributors

Copyright 2010, 2011, 2012 Hugo Duncan.

About

Automates controlling and provisioning cloud server instances. DevOps for the JVM.

Resources

Stars

Watchers

Forks

Packages

No packages published