Setting up a custom Amazon ParallelCluster cookbook
Important
The following are instructions for using a custom version of the Amazon ParallelCluster cookbook recipes. This is an advanced method of customizing Amazon ParallelCluster, with potential issues that can be hard to debug. The Amazon ParallelCluster team highly recommends using the scripts in Custom Bootstrap Actions for customization, because post-install hooks are generally easier to debug and more portable across releases of Amazon ParallelCluster.
Steps
-
Identify the Amazon ParallelCluster Cookbook working directory where you have cloned the Amazon ParallelCluster cookbook
code. _cookbookDir=
<path to cookbook>
-
Detect the current version of the Amazon ParallelCluster Cookbook.
_version=$(grep version ${_cookbookDir}/metadata.rb|awk '{print $2}'| tr -d \')
-
Create an archive of the Amazon ParallelCluster Cookbook and calculate its md5.
cd "${_cookbookDir}" _stashName=$(git stash create) git archive --format tar --prefix="aws-parallelcluster-cookbook-${_version}/" "${_stashName:-HEAD}" | gzip > "aws-parallelcluster-cookbook-${_version}.tgz" md5sum "aws-parallelcluster-cookbook-${_version}.tgz" > "aws-parallelcluster-cookbook-${_version}.md5"
-
Create an Amazon S3 bucket and upload the archive, its md5, and its last modified date into the bucket. Give public readable permission through a public-read ACL.
_bucket=
<the bucket name>
aws s3 cp --acl public-read aws-parallelcluster-cookbook-${_version}.tgz s3://${_bucket}/cookbooks/aws-parallelcluster-cookbook-${_version}.tgz aws s3 cp --acl public-read aws-parallelcluster-cookbook-${_version}.md5 s3://${_bucket}/cookbooks/aws-parallelcluster-cookbook-${_version}.md5 aws s3api head-object --bucket ${_bucket} --key cookbooks/aws-parallelcluster-cookbook-${_version}.tgz --output text --query LastModified > aws-parallelcluster-cookbook-${_version}.tgz.date aws s3 cp --acl public-read aws-parallelcluster-cookbook-${_version}.tgz.date s3://${_bucket}/cookbooks/aws-parallelcluster-cookbook-${_version}.tgz.date -
Add the following variables to the Amazon ParallelCluster configuration file, under the [cluster] section.
custom_chef_cookbook = https://${_bucket}.s3.
<the bucket region>
.amazonaws.com/cookbooks/aws-parallelcluster-cookbook-${_version}.tgz extra_json = { "cluster" : { "skip_install_recipes" : "no" } }Note
Starting with Amazon ParallelCluster version 2.6.1, most of the install recipes are skipped by default when launching nodes to improve startup times. To skip most of the install recipes for better startup times at the expense of backwards compatibility, remove
"skip_install_recipes" : "no"
from thecluster
key in the extra_json setting.