Skip to content

Instantly share code, notes, and snippets.

@jespada
Created June 6, 2012 22:34
Show Gist options
  • Save jespada/2885254 to your computer and use it in GitHub Desktop.
Save jespada/2885254 to your computer and use it in GitHub Desktop.
jenkis role
name "jenkins"
description "this role will install and setup jenkins main server"
run_list(
"recipe[java]",
"recipe[jenkins]",
"recipe[git]",
"recipe[maven]"
)
default_attributes(
"java" => {
"install_flavor" => "oracle"
},
"jenkins" => {
"http_proxy" => {
"variant" => "nginx",
"prefix" => "jenkins"
},
"server" => {
"host" => "127.0.0.1",
"plugins" => ["git", "github", "embeddable-build-status", "github-oauth"]
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment