tree: c20be7e2eda6695a370c2a2aa5689bc845c031ad [path history] [tgz]
  1. files/
  2. manifests/
  3. README.md
bigtop-toolchain/README.md

Licensed to the Apache Software Foundation (ASF) under one or more

contributor license agreements. See the NOTICE file distributed with

this work for additional information regarding copyright ownership.

The ASF licenses this file to You under the Apache License, Version 2.0

(the “License”); you may not use this file except in compliance with

the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software

distributed under the License is distributed on an “AS IS” BASIS,

WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and

limitations under the License.

bigtop-toolchain

##BigTop Toolchain Deployment through Puppet

Ian Mordey ian.mordey@wandisco.com

Puppet module for configuring a CentOS host for building BigTop. It installs:

Apache Ant 1.9.0

Apache Forrest 0.9

Oracle JDK 1.6u43

Apache Maven 3.0.5

Protobuf 2.4.1

##Usage

These can be indivdually applied using:

node "node1.example.com" {
  include bigtop-toolchain::jdk
  include bigtop-toolchain::maven
  include bigtop-toolchain::forrest
  include bigtop-toolchain::ant
  include bigtop-toolchain::protobuf
  include bigtop-toolchain::packages
  include bigtop-toolchain::env
  include bigtop-toolchain::user
}

Or installed as a whole with:

node "node2.example.com" {
  include bigtop-toolchain::installer
}

It will create a user jenkins with the required environment variables set for building BigTop:

MAVEN_HOME=/usr/local/maven
PATH=$PATH:$MAVEN_HOME/bin
JAVA_HOME=/usr/java/latest
ANT_HOME=/usr/local/ant
PATH=$PATH:$ANT_HOME/bin
FORREST_HOME=/usr/local/apache-forrest
PATH=$PATH:$FORREST_HOME/bin

If you do not want to use a puppet master this module can be applied standalone with a command such as:

puppet apply --modulepath=<path_to_bigtop> -e "include bigtop-toolchain::installer"

where <path_to_bigtop> is the cloned git repo.

Requirements

Due to redistribution restrictions the Oracle JDK must be downloaded seperately.

Download the JDK 64bit rpm.bin file, run it with the -x switch to extract the rpm file and copy jdk-6u43-linux-amd64.rpm to files/.

The following files must also be downloaded from their respective mirrors and copied into files/

apache-ant-1.9.0-bin.tar.gz

apache-forrest-0.9.tar.gz

apache-maven-3.0.5-bin.tar.gz

Support

License: Apache License, Version 2.0