Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

vmware-archive/hadoop-boshrelease

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hadoop-boshrelease is no longer actively maintained by VMware.

Bosh release for Apache Hadoop

One of the fastest ways to get Apache Hadoop running on any infrastructure is too deploy this bosh release.

Usage

To use this bosh release, first upload it to your bosh:

bosh target BOSH_HOST
git clone git@github.com:cloudfoundry-community/hadoop-boshrelease.git
cd hadoop-boshrelease
bosh upload release releases/hadoop-1.yml

Now create a deployment file (using the files at the examples directory as a starting point) and deploy:

bosh deployment path/to/deployment.yml
bosh -n deploy

Create new final release

To create a new final release you need to get read/write API credentials to the @cloudfoundry-community s3 account.

Please email Dr Nic Williams and he will create unique API credentials for you.

Create a config/private.yml file with the following contents:

---
blobstore:
  s3:
    access_key_id:     ACCESS
    secret_access_key: PRIVATE

You can now create final releases for everyone to enjoy!

bosh create release
# test this dev release
git commit -m "updated hadoop"
bosh create release --final
git commit -m "creating vXYZ release"
git tag vXYZ
git push origin master --tags