OSDN Git Service

add .envrc
[metasearch/grid-chef-repo.git] / roles / hadoop-pseudo-distributed-with-security.rb
1 name 'hadoop-pseudo-distributed-with-security'
2 description 'Hadoop pseudo distributed mode with security'
3
4 run_list(
5   'role[node_commons]',
6   'role[nameservice-master]',
7   'role[hadoop]',
8   'role[jce_policy]'
9 )
10
11 #env_run_lists "prod" => ["recipe[apache2]"], "staging" => ["recipe[apache2::staging]"], "_default" => []
12
13 default_attributes(
14   'hadoop' => {
15     'with_security' => true,
16     'HADOOP_CLASSPATH' => '/usr/share/java/commons-daemon.jar',
17     'HADOOP_USER_CLASSPATH_FIRST' => true
18   }
19 )
20
21 #override_attributes "apache2" => { "max_children" => "50" }