lobot 0.10.3 → 1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (696) hide show
  1. data/.gitignore +1 -0
  2. data/.gitmodules +3 -0
  3. data/.rvmrc +1 -1
  4. data/Gemfile +1 -0
  5. data/README.md +26 -28
  6. data/Rakefile +3 -1
  7. data/chef/cookbooks/pivotal_ci/attributes/git.rb +4 -0
  8. data/chef/cookbooks/pivotal_ci/attributes/jenkins.rb +3 -0
  9. data/{lib/generators/lobot/templates/chef → chef}/cookbooks/pivotal_ci/attributes/nginx.rb +0 -0
  10. data/chef/cookbooks/pivotal_ci/attributes/ssl.rb +5 -0
  11. data/chef/cookbooks/pivotal_ci/files/default/jenkins-ci.org.key +112 -0
  12. data/{lib/generators/lobot/templates/chef → chef}/cookbooks/pivotal_ci/libraries/ci_config.rb +0 -0
  13. data/chef/cookbooks/pivotal_ci/recipes/default.rb +6 -0
  14. data/chef/cookbooks/pivotal_ci/recipes/fonts.rb +5 -0
  15. data/chef/cookbooks/pivotal_ci/recipes/git_config.rb +17 -0
  16. data/{lib/generators/lobot/templates/chef → chef}/cookbooks/pivotal_ci/recipes/id_rsa.rb +18 -8
  17. data/chef/cookbooks/pivotal_ci/recipes/jenkins.rb +26 -0
  18. data/chef/cookbooks/pivotal_ci/recipes/jenkins_config.rb +52 -0
  19. data/chef/cookbooks/pivotal_ci/recipes/limited_travis_ci_environment.rb +35 -0
  20. data/chef/cookbooks/pivotal_ci/recipes/nginx.rb +17 -0
  21. data/chef/cookbooks/pivotal_ci/recipes/ssl_certificate.rb +44 -0
  22. data/chef/cookbooks/pivotal_ci/recipes/teamcity.rb +42 -0
  23. data/{lib/generators/lobot/templates/chef → chef}/cookbooks/pivotal_ci/templates/default/jenkins-job-config.xml.erb +7 -3
  24. data/chef/cookbooks/pivotal_ci/templates/default/nginx-conf.erb +58 -0
  25. data/{lib/generators/lobot/templates/chef/cookbooks/pivotal_server → chef/cookbooks/pivotal_ci}/templates/default/nginx-htaccess.erb +0 -0
  26. data/{lib/generators/lobot/templates/chef → chef}/cookbooks/pivotal_ci/templates/default/teamcity-initd.erb +1 -1
  27. data/chef/travis-cookbooks/.gitignore +7 -0
  28. data/chef/travis-cookbooks/LICENSE +23 -0
  29. data/chef/travis-cookbooks/README.md +28 -0
  30. data/chef/travis-cookbooks/ci_environment/.gitignore +1 -0
  31. data/chef/travis-cookbooks/ci_environment/ant/README.md +51 -0
  32. data/chef/travis-cookbooks/ci_environment/ant/metadata.rb +14 -0
  33. data/chef/travis-cookbooks/ci_environment/ant/recipes/default.rb +41 -0
  34. data/chef/travis-cookbooks/ci_environment/apt/README.md +109 -0
  35. data/chef/travis-cookbooks/ci_environment/apt/attributes/default.rb +1 -0
  36. data/chef/travis-cookbooks/ci_environment/apt/files/default/apt-cacher +9 -0
  37. data/chef/travis-cookbooks/ci_environment/apt/files/default/apt-cacher.conf +144 -0
  38. data/chef/travis-cookbooks/ci_environment/apt/files/default/apt-proxy-v2.conf +50 -0
  39. data/chef/travis-cookbooks/ci_environment/apt/metadata.json +34 -0
  40. data/chef/travis-cookbooks/ci_environment/apt/metadata.rb +13 -0
  41. data/chef/travis-cookbooks/ci_environment/apt/providers/repository.rb +73 -0
  42. data/chef/travis-cookbooks/ci_environment/apt/recipes/cacher-client.rb +37 -0
  43. data/chef/travis-cookbooks/ci_environment/apt/recipes/cacher.rb +45 -0
  44. data/chef/travis-cookbooks/ci_environment/apt/recipes/default.rb +54 -0
  45. data/chef/travis-cookbooks/ci_environment/apt/resources/repository.rb +31 -0
  46. data/chef/travis-cookbooks/ci_environment/apt/templates/ubuntu-10.04/sources.list.erb +31 -0
  47. data/chef/travis-cookbooks/ci_environment/apt/templates/ubuntu-11.04/sources.list.erb +31 -0
  48. data/chef/travis-cookbooks/ci_environment/apt/templates/ubuntu-11.10/sources.list.erb +31 -0
  49. data/chef/travis-cookbooks/ci_environment/apt/templates/ubuntu-12.04/sources.list.erb +31 -0
  50. data/chef/travis-cookbooks/ci_environment/bazaar/recipes/default.rb +26 -0
  51. data/chef/travis-cookbooks/ci_environment/bison/attributes/default.rb +7 -0
  52. data/chef/travis-cookbooks/ci_environment/bison/recipes/default.rb +48 -0
  53. data/chef/travis-cookbooks/ci_environment/build-essential/README.md +24 -0
  54. data/chef/travis-cookbooks/ci_environment/build-essential/metadata.rb +10 -0
  55. data/chef/travis-cookbooks/ci_environment/build-essential/recipes/default.rb +47 -0
  56. data/chef/travis-cookbooks/ci_environment/cassandra/attributes/default.rb +25 -0
  57. data/chef/travis-cookbooks/ci_environment/cassandra/recipes/datastax.rb +43 -0
  58. data/chef/travis-cookbooks/ci_environment/cassandra/recipes/package.rb +43 -0
  59. data/chef/travis-cookbooks/ci_environment/cassandra/recipes/tarball.rb +154 -0
  60. data/chef/travis-cookbooks/ci_environment/cassandra/templates/default/cassandra-cli.erb +60 -0
  61. data/chef/travis-cookbooks/ci_environment/cassandra/templates/default/cassandra-env.sh.erb +159 -0
  62. data/chef/travis-cookbooks/ci_environment/cassandra/templates/default/cassandra-limits.conf.erb +2 -0
  63. data/chef/travis-cookbooks/ci_environment/cassandra/templates/default/cassandra.init.erb +231 -0
  64. data/chef/travis-cookbooks/ci_environment/cassandra/templates/default/cassandra.yaml.erb +567 -0
  65. data/chef/travis-cookbooks/ci_environment/cassandra/templates/default/log4j-server.properties.yml +43 -0
  66. data/chef/travis-cookbooks/ci_environment/chromium/recipes/default.rb +26 -0
  67. data/chef/travis-cookbooks/ci_environment/clang/attributes/tarball.rb +11 -0
  68. data/chef/travis-cookbooks/ci_environment/clang/metadata.rb +11 -0
  69. data/chef/travis-cookbooks/ci_environment/clang/recipes/default.rb +26 -0
  70. data/chef/travis-cookbooks/ci_environment/clang/recipes/tarball.rb +75 -0
  71. data/chef/travis-cookbooks/ci_environment/cmake/README.md +21 -0
  72. data/chef/travis-cookbooks/ci_environment/cmake/metadata.rb +10 -0
  73. data/chef/travis-cookbooks/ci_environment/cmake/recipes/default.rb +23 -0
  74. data/chef/travis-cookbooks/ci_environment/composer/recipes/default.rb +21 -0
  75. data/chef/travis-cookbooks/ci_environment/composer/templates/default/composer.erb +3 -0
  76. data/chef/travis-cookbooks/ci_environment/couchdb/recipes/default.rb +33 -0
  77. data/chef/travis-cookbooks/ci_environment/couchdb/recipes/ppa.rb +37 -0
  78. data/chef/travis-cookbooks/ci_environment/couchdb/recipes/ubuntu-12.04.rb +39 -0
  79. data/chef/travis-cookbooks/ci_environment/couchdb/recipes/ubuntu1110_ppa.rb +27 -0
  80. data/chef/travis-cookbooks/ci_environment/couchdb/recipes/ubuntu1204_ppa.rb +27 -0
  81. data/chef/travis-cookbooks/ci_environment/elasticsearch/attributes/default.rb +3 -0
  82. data/chef/travis-cookbooks/ci_environment/elasticsearch/recipes/default.rb +64 -0
  83. data/chef/travis-cookbooks/ci_environment/emacs/metadata.rb +11 -0
  84. data/chef/travis-cookbooks/ci_environment/emacs/recipes/default.rb +21 -0
  85. data/chef/travis-cookbooks/ci_environment/emacs/recipes/nox.rb +32 -0
  86. data/chef/travis-cookbooks/ci_environment/erlang/attributes/default.rb +1 -0
  87. data/chef/travis-cookbooks/ci_environment/erlang/metadata.rb +11 -0
  88. data/chef/travis-cookbooks/ci_environment/erlang/recipes/default.rb +27 -0
  89. data/chef/travis-cookbooks/ci_environment/firefox/recipes/default.rb +29 -0
  90. data/chef/travis-cookbooks/ci_environment/git/README.rdoc +37 -0
  91. data/chef/travis-cookbooks/ci_environment/git/files/default/git_1.7.5.4-1+github5_amd64.deb +0 -0
  92. data/chef/travis-cookbooks/ci_environment/git/files/default/git_1.7.5.4-1+github5_i386.deb +0 -0
  93. data/chef/travis-cookbooks/ci_environment/git/metadata.rb +15 -0
  94. data/chef/travis-cookbooks/ci_environment/git/recipes/custom.git +65 -0
  95. data/chef/travis-cookbooks/ci_environment/git/recipes/default.rb +23 -0
  96. data/chef/travis-cookbooks/ci_environment/git/recipes/ppa.rb +37 -0
  97. data/chef/travis-cookbooks/ci_environment/git/templates/default/sv-git-daemon-log-run.erb +2 -0
  98. data/chef/travis-cookbooks/ci_environment/git/templates/default/sv-git-daemon-run.erb +3 -0
  99. data/chef/travis-cookbooks/ci_environment/golang/README.md +35 -0
  100. data/chef/travis-cookbooks/ci_environment/golang/attributes/default.rb +11 -0
  101. data/chef/travis-cookbooks/ci_environment/golang/recipes/default.rb +20 -0
  102. data/chef/travis-cookbooks/ci_environment/golang/recipes/multi.rb +55 -0
  103. data/chef/travis-cookbooks/ci_environment/golang/recipes/ppa.rb +32 -0
  104. data/chef/travis-cookbooks/ci_environment/gradle/README.md +33 -0
  105. data/chef/travis-cookbooks/ci_environment/gradle/attributes/tarball.rb +9 -0
  106. data/chef/travis-cookbooks/ci_environment/gradle/files/default/etc/profile.d/gradle.sh +1 -0
  107. data/chef/travis-cookbooks/ci_environment/gradle/recipes/tarball.rb +65 -0
  108. data/chef/travis-cookbooks/ci_environment/gvm/files/ubuntu/gvm.sh +3 -0
  109. data/chef/travis-cookbooks/ci_environment/gvm/recipes/default.rb +44 -0
  110. data/chef/travis-cookbooks/ci_environment/haskell/attributes/ghc.rb +4 -0
  111. data/chef/travis-cookbooks/ci_environment/haskell/attributes/platform.rb +5 -0
  112. data/chef/travis-cookbooks/ci_environment/haskell/files/default/cabal.sh +3 -0
  113. data/chef/travis-cookbooks/ci_environment/haskell/recipes/default.rb +38 -0
  114. data/chef/travis-cookbooks/ci_environment/haskell/recipes/ghc_package.rb +28 -0
  115. data/chef/travis-cookbooks/ci_environment/haskell/recipes/ghc_source.rb +78 -0
  116. data/chef/travis-cookbooks/ci_environment/haskell/recipes/platform_package.rb +52 -0
  117. data/chef/travis-cookbooks/ci_environment/haskell/recipes/platform_ppa.rb +68 -0
  118. data/chef/travis-cookbooks/ci_environment/haskell/recipes/platform_source.rb +67 -0
  119. data/chef/travis-cookbooks/ci_environment/haskell/recipes/source.rb +25 -0
  120. data/chef/travis-cookbooks/ci_environment/hbase/recipes/cdh4.rb +49 -0
  121. data/chef/travis-cookbooks/ci_environment/htop/recipes/default.rb +4 -0
  122. data/chef/travis-cookbooks/ci_environment/imagemagick/README.rdoc +33 -0
  123. data/chef/travis-cookbooks/ci_environment/imagemagick/metadata.rb +12 -0
  124. data/chef/travis-cookbooks/ci_environment/imagemagick/recipes/default.rb +37 -0
  125. data/chef/travis-cookbooks/ci_environment/iptables/files/default/iptables_rules +13 -0
  126. data/chef/travis-cookbooks/ci_environment/iptables/metadata.rb +10 -0
  127. data/chef/travis-cookbooks/ci_environment/iptables/recipes/default.rb +48 -0
  128. data/chef/travis-cookbooks/ci_environment/iptables/templates/default/iptables_load.erb +3 -0
  129. data/chef/travis-cookbooks/ci_environment/java/README.md +102 -0
  130. data/chef/travis-cookbooks/ci_environment/java/attributes/default.rb +41 -0
  131. data/chef/travis-cookbooks/ci_environment/java/files/ubuntu/java.seed +14 -0
  132. data/chef/travis-cookbooks/ci_environment/java/files/ubuntu/load_jdk_switcher.sh +7 -0
  133. data/chef/travis-cookbooks/ci_environment/java/files/ubuntu/oraclejdk7.jinfo +44 -0
  134. data/chef/travis-cookbooks/ci_environment/java/files/ubuntu/oraclejdk8.jinfo +44 -0
  135. data/chef/travis-cookbooks/ci_environment/java/files/ubuntu/startssl_root_ca_installer.sh +48 -0
  136. data/chef/travis-cookbooks/ci_environment/java/metadata.rb +16 -0
  137. data/chef/travis-cookbooks/ci_environment/java/recipes/default.rb +30 -0
  138. data/chef/travis-cookbooks/ci_environment/java/recipes/multi.rb +30 -0
  139. data/chef/travis-cookbooks/ci_environment/java/recipes/openjdk6.rb +27 -0
  140. data/chef/travis-cookbooks/ci_environment/java/recipes/openjdk7.rb +27 -0
  141. data/chef/travis-cookbooks/ci_environment/java/recipes/oraclejdk7.rb +78 -0
  142. data/chef/travis-cookbooks/ci_environment/java/recipes/oraclejdk8.rb +71 -0
  143. data/chef/travis-cookbooks/ci_environment/java/templates/ubuntu/etc/profile.d/java_home.sh.erb +3 -0
  144. data/chef/travis-cookbooks/ci_environment/kerl/README.md +3 -0
  145. data/chef/travis-cookbooks/ci_environment/kerl/attributes/default.rb +1 -0
  146. data/chef/travis-cookbooks/ci_environment/kerl/attributes/source.rb +2 -0
  147. data/chef/travis-cookbooks/ci_environment/kerl/metadata.rb +6 -0
  148. data/chef/travis-cookbooks/ci_environment/kerl/recipes/default.rb +19 -0
  149. data/chef/travis-cookbooks/ci_environment/kerl/recipes/source.rb +96 -0
  150. data/chef/travis-cookbooks/ci_environment/kestrel/attributes/tarball.rb +15 -0
  151. data/chef/travis-cookbooks/ci_environment/kestrel/files/default/config/development.scala +33 -0
  152. data/chef/travis-cookbooks/ci_environment/kestrel/recipes/tarball.rb +134 -0
  153. data/chef/travis-cookbooks/ci_environment/kestrel/templates/ubuntu/kestrel-limits.conf.erb +2 -0
  154. data/chef/travis-cookbooks/ci_environment/kestrel/templates/ubuntu/kestrel.init.erb +208 -0
  155. data/chef/travis-cookbooks/ci_environment/leiningen/README.rdoc +5 -0
  156. data/chef/travis-cookbooks/ci_environment/leiningen/attributes/default.rb +5 -0
  157. data/chef/travis-cookbooks/ci_environment/leiningen/files/default/profiles.clj +1 -0
  158. data/chef/travis-cookbooks/ci_environment/leiningen/metadata.json +32 -0
  159. data/chef/travis-cookbooks/ci_environment/leiningen/metadata.rb +8 -0
  160. data/chef/travis-cookbooks/ci_environment/leiningen/recipes/default.rb +23 -0
  161. data/chef/travis-cookbooks/ci_environment/leiningen/recipes/lein1x.rb +68 -0
  162. data/chef/travis-cookbooks/ci_environment/leiningen/recipes/lein2x.rb +82 -0
  163. data/chef/travis-cookbooks/ci_environment/libffi/recipes/default.rb +34 -0
  164. data/chef/travis-cookbooks/ci_environment/libgdbm/recipes/default.rb +27 -0
  165. data/chef/travis-cookbooks/ci_environment/libncurses/recipes/default.rb +31 -0
  166. data/chef/travis-cookbooks/ci_environment/libossp-uuid/recipes/default.rb +27 -0
  167. data/chef/travis-cookbooks/ci_environment/libqt4/recipes/default.rb +5 -0
  168. data/chef/travis-cookbooks/ci_environment/libreadline/recipes/default.rb +34 -0
  169. data/chef/travis-cookbooks/ci_environment/libssl/recipes/098.rb +28 -0
  170. data/chef/travis-cookbooks/ci_environment/libssl/recipes/default.rb +24 -0
  171. data/chef/travis-cookbooks/ci_environment/libxml/recipes/default.rb +30 -0
  172. data/chef/travis-cookbooks/ci_environment/libyaml/recipes/default.rb +6 -0
  173. data/chef/travis-cookbooks/ci_environment/lighttpd/attributes/default.rb +3 -0
  174. data/chef/travis-cookbooks/ci_environment/lighttpd/recipes/default.rb +39 -0
  175. data/chef/travis-cookbooks/ci_environment/lighttpd/templates/default/lighttpd.conf.erb +166 -0
  176. data/chef/travis-cookbooks/ci_environment/maven3/attributes/default.rb +3 -0
  177. data/chef/travis-cookbooks/ci_environment/maven3/files/default/settings.xml +136 -0
  178. data/chef/travis-cookbooks/ci_environment/maven3/recipes/default.rb +53 -0
  179. data/chef/travis-cookbooks/ci_environment/maven3/recipes/package.rb +27 -0
  180. data/chef/travis-cookbooks/ci_environment/maven3/recipes/ppa.rb +44 -0
  181. data/chef/travis-cookbooks/ci_environment/maven3/recipes/tarball.rb +37 -0
  182. data/chef/travis-cookbooks/ci_environment/maven3/templates/ubuntu-11.04/install_maven3.sh.erb +32 -0
  183. data/chef/travis-cookbooks/ci_environment/memcached/README.rdoc +52 -0
  184. data/chef/travis-cookbooks/ci_environment/memcached/attributes/default.rb +5 -0
  185. data/chef/travis-cookbooks/ci_environment/memcached/attributes/ppa.rb +3 -0
  186. data/chef/travis-cookbooks/ci_environment/memcached/definitions/memcached_instance.rb +32 -0
  187. data/chef/travis-cookbooks/ci_environment/memcached/metadata.rb +33 -0
  188. data/chef/travis-cookbooks/ci_environment/memcached/recipes/default.rb +60 -0
  189. data/chef/travis-cookbooks/ci_environment/memcached/recipes/ppa.rb +34 -0
  190. data/chef/travis-cookbooks/ci_environment/memcached/templates/default/memcached.conf.erb +54 -0
  191. data/chef/travis-cookbooks/ci_environment/memcached/templates/default/memcached.default.erb +2 -0
  192. data/chef/travis-cookbooks/ci_environment/memcached/templates/default/sv-memcached-log-run.erb +2 -0
  193. data/chef/travis-cookbooks/ci_environment/memcached/templates/default/sv-memcached-run.erb +3 -0
  194. data/chef/travis-cookbooks/ci_environment/mercurial/recipes/default.rb +26 -0
  195. data/chef/travis-cookbooks/ci_environment/mingw32/README.md +21 -0
  196. data/chef/travis-cookbooks/ci_environment/mingw32/metadata.rb +10 -0
  197. data/chef/travis-cookbooks/ci_environment/mingw32/recipes/default.rb +23 -0
  198. data/chef/travis-cookbooks/ci_environment/mongodb/.gitignore +1 -0
  199. data/chef/travis-cookbooks/ci_environment/mongodb/README.md +0 -0
  200. data/chef/travis-cookbooks/ci_environment/mongodb/attributes/mongodb.rb +67 -0
  201. data/chef/travis-cookbooks/ci_environment/mongodb/files/default/mongodb.list +1 -0
  202. data/chef/travis-cookbooks/ci_environment/mongodb/files/default/mongodb.sysvinit.sh +261 -0
  203. data/chef/travis-cookbooks/ci_environment/mongodb/metadata.rb +235 -0
  204. data/chef/travis-cookbooks/ci_environment/mongodb/recipes/apt.rb +65 -0
  205. data/chef/travis-cookbooks/ci_environment/mongodb/recipes/default.rb +23 -0
  206. data/chef/travis-cookbooks/ci_environment/mongodb/recipes/server.rb +43 -0
  207. data/chef/travis-cookbooks/ci_environment/mongodb/templates/default/mongod.upstart.erb +16 -0
  208. data/chef/travis-cookbooks/ci_environment/mongodb/templates/default/mongodb.conf.erb +5 -0
  209. data/chef/travis-cookbooks/ci_environment/mongodb/templates/default/mongodb.init.10gen.erb +74 -0
  210. data/chef/travis-cookbooks/ci_environment/mongodb/templates/default/mongodb.init.erb +268 -0
  211. data/chef/travis-cookbooks/ci_environment/mongodb/templates/default/mongodb.list.erb +1 -0
  212. data/chef/travis-cookbooks/ci_environment/mysql/README.md +141 -0
  213. data/chef/travis-cookbooks/ci_environment/mysql/attributes/default.rb +3 -0
  214. data/chef/travis-cookbooks/ci_environment/mysql/attributes/server.rb +69 -0
  215. data/chef/travis-cookbooks/ci_environment/mysql/attributes/server_on_ramfs.rb +1 -0
  216. data/chef/travis-cookbooks/ci_environment/mysql/libraries/database.rb +19 -0
  217. data/chef/travis-cookbooks/ci_environment/mysql/libraries/helpers.rb +33 -0
  218. data/chef/travis-cookbooks/ci_environment/mysql/metadata.rb +76 -0
  219. data/chef/travis-cookbooks/ci_environment/mysql/providers/database.rb +81 -0
  220. data/chef/travis-cookbooks/ci_environment/mysql/recipes/client.rb +60 -0
  221. data/chef/travis-cookbooks/ci_environment/mysql/recipes/default.rb +20 -0
  222. data/chef/travis-cookbooks/ci_environment/mysql/recipes/server.rb +125 -0
  223. data/chef/travis-cookbooks/ci_environment/mysql/recipes/server_on_ramfs.rb +83 -0
  224. data/chef/travis-cookbooks/ci_environment/mysql/resources/database.rb +27 -0
  225. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/debian.cnf.erb +12 -0
  226. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/grants.sql.erb +33 -0
  227. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/init/mysql.conf.erb +49 -0
  228. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/my.cnf.erb +184 -0
  229. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/mysql-server.seed.erb +10 -0
  230. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/port_mysql.erb +3 -0
  231. data/chef/travis-cookbooks/ci_environment/mysql/templates/default/ramfs/my.cnf.erb +177 -0
  232. data/chef/travis-cookbooks/ci_environment/neo4j-server/.gitignore +4 -0
  233. data/chef/travis-cookbooks/ci_environment/neo4j-server/README.md +47 -0
  234. data/chef/travis-cookbooks/ci_environment/neo4j-server/attributes/tarball.rb +32 -0
  235. data/chef/travis-cookbooks/ci_environment/neo4j-server/recipes/tarball.rb +140 -0
  236. data/chef/travis-cookbooks/ci_environment/neo4j-server/templates/default/neo4j-limits.conf.erb +2 -0
  237. data/chef/travis-cookbooks/ci_environment/neo4j-server/templates/default/neo4j-server.properties.erb +75 -0
  238. data/chef/travis-cookbooks/ci_environment/neo4j-server/templates/default/neo4j-wrapper.conf.erb +26 -0
  239. data/chef/travis-cookbooks/ci_environment/neo4j-server/templates/default/neo4j.init.erb +55 -0
  240. data/chef/travis-cookbooks/ci_environment/networking_basic/recipes/default.rb +36 -0
  241. data/chef/travis-cookbooks/ci_environment/nodejs/attributes/multi.rb +3 -0
  242. data/chef/travis-cookbooks/ci_environment/nodejs/files/default/nvm.sh +281 -0
  243. data/chef/travis-cookbooks/ci_environment/nodejs/files/default/profile_entry.sh +3 -0
  244. data/chef/travis-cookbooks/ci_environment/nodejs/recipes/multi.rb +79 -0
  245. data/chef/travis-cookbooks/ci_environment/nodejs/templates/default/nvm.sh.erb +3 -0
  246. data/chef/travis-cookbooks/ci_environment/openssh/files/default/ssh_init.sh +181 -0
  247. data/chef/travis-cookbooks/ci_environment/openssh/files/default/sshd_config +56 -0
  248. data/chef/travis-cookbooks/ci_environment/openssh/recipes/default.rb +42 -0
  249. data/chef/travis-cookbooks/ci_environment/openssl/README.md +37 -0
  250. data/chef/travis-cookbooks/ci_environment/openssl/libraries/secure_password.rb +37 -0
  251. data/chef/travis-cookbooks/ci_environment/openssl/metadata.rb +8 -0
  252. data/chef/travis-cookbooks/ci_environment/openssl/recipes/default.rb +19 -0
  253. data/chef/travis-cookbooks/ci_environment/perlbrew/attributes/default.rb +0 -0
  254. data/chef/travis-cookbooks/ci_environment/perlbrew/attributes/multi.rb +7 -0
  255. data/chef/travis-cookbooks/ci_environment/perlbrew/files/default/perlbrew.sh +7 -0
  256. data/chef/travis-cookbooks/ci_environment/perlbrew/metadata.rb +11 -0
  257. data/chef/travis-cookbooks/ci_environment/perlbrew/recipes/default.rb +26 -0
  258. data/chef/travis-cookbooks/ci_environment/perlbrew/recipes/multi.rb +41 -0
  259. data/chef/travis-cookbooks/ci_environment/phantomjs/attributes/default.rb +10 -0
  260. data/chef/travis-cookbooks/ci_environment/phantomjs/files/ubuntu/etc/profile.d/phantomjs.sh +1 -0
  261. data/chef/travis-cookbooks/ci_environment/phantomjs/recipes/default.rb +24 -0
  262. data/chef/travis-cookbooks/ci_environment/phantomjs/recipes/tarball.rb +68 -0
  263. data/chef/travis-cookbooks/ci_environment/php/README.md +5 -0
  264. data/chef/travis-cookbooks/ci_environment/php/attributes/default.rb +2 -0
  265. data/chef/travis-cookbooks/ci_environment/php/metadata.rb +10 -0
  266. data/chef/travis-cookbooks/ci_environment/php/recipes/multi.rb +25 -0
  267. data/chef/travis-cookbooks/ci_environment/phpbuild/attributes/default.rb +19 -0
  268. data/chef/travis-cookbooks/ci_environment/phpbuild/files/default/definitions/5.2.17 +16 -0
  269. data/chef/travis-cookbooks/ci_environment/phpbuild/files/default/definitions/5.3.3 +5 -0
  270. data/chef/travis-cookbooks/ci_environment/phpbuild/metadata.rb +5 -0
  271. data/chef/travis-cookbooks/ci_environment/phpbuild/providers/build.rb +56 -0
  272. data/chef/travis-cookbooks/ci_environment/phpbuild/recipes/default.rb +124 -0
  273. data/chef/travis-cookbooks/ci_environment/phpbuild/resources/build.rb +7 -0
  274. data/chef/travis-cookbooks/ci_environment/phpbuild/templates/default/default_configure_options.erb +38 -0
  275. data/chef/travis-cookbooks/ci_environment/phpbuild/templates/default/travis.ini.erb +9 -0
  276. data/chef/travis-cookbooks/ci_environment/phpenv/files/default/phpenv.sh +5 -0
  277. data/chef/travis-cookbooks/ci_environment/phpenv/metadata.rb +5 -0
  278. data/chef/travis-cookbooks/ci_environment/phpenv/recipes/default.rb +29 -0
  279. data/chef/travis-cookbooks/ci_environment/postgresql/README.rdoc +49 -0
  280. data/chef/travis-cookbooks/ci_environment/postgresql/attributes/default.rb +74 -0
  281. data/chef/travis-cookbooks/ci_environment/postgresql/metadata.rb +13 -0
  282. data/chef/travis-cookbooks/ci_environment/postgresql/recipes/client.rb +28 -0
  283. data/chef/travis-cookbooks/ci_environment/postgresql/recipes/default.rb +20 -0
  284. data/chef/travis-cookbooks/ci_environment/postgresql/recipes/server.rb +83 -0
  285. data/chef/travis-cookbooks/ci_environment/postgresql/recipes/server_debian.rb +73 -0
  286. data/chef/travis-cookbooks/ci_environment/postgresql/recipes/server_on_ramfs.rb +32 -0
  287. data/chef/travis-cookbooks/ci_environment/postgresql/recipes/server_redhat.rb +84 -0
  288. data/chef/travis-cookbooks/ci_environment/postgresql/templates/default/30-shared-memory.conf.erb +2 -0
  289. data/chef/travis-cookbooks/ci_environment/postgresql/templates/default/debian.pg_hba.conf.erb +83 -0
  290. data/chef/travis-cookbooks/ci_environment/postgresql/templates/default/debian.postgresql.conf.erb +234 -0
  291. data/chef/travis-cookbooks/ci_environment/postgresql/templates/default/ramfs.init.erb +50 -0
  292. data/chef/travis-cookbooks/ci_environment/postgresql/templates/default/redhat.pg_hba.conf.erb +74 -0
  293. data/chef/travis-cookbooks/ci_environment/postgresql/templates/default/redhat.postgresql.conf.erb +502 -0
  294. data/chef/travis-cookbooks/ci_environment/pypy/attributes/default.rb +21 -0
  295. data/chef/travis-cookbooks/ci_environment/pypy/files/default/etc/profile.d/pypy.sh +1 -0
  296. data/chef/travis-cookbooks/ci_environment/pypy/recipes/ppa.rb +39 -0
  297. data/chef/travis-cookbooks/ci_environment/pypy/recipes/tarball.rb +54 -0
  298. data/chef/travis-cookbooks/ci_environment/python/README.md +162 -0
  299. data/chef/travis-cookbooks/ci_environment/python/attributes/default.rb +22 -0
  300. data/chef/travis-cookbooks/ci_environment/python/files/default/virtualenv_settings.sh +1 -0
  301. data/chef/travis-cookbooks/ci_environment/python/metadata.json +52 -0
  302. data/chef/travis-cookbooks/ci_environment/python/metadata.rb +17 -0
  303. data/chef/travis-cookbooks/ci_environment/python/providers/pip.rb +146 -0
  304. data/chef/travis-cookbooks/ci_environment/python/providers/virtualenv.rb +79 -0
  305. data/chef/travis-cookbooks/ci_environment/python/recipes/default.rb +21 -0
  306. data/chef/travis-cookbooks/ci_environment/python/recipes/multi.rb +150 -0
  307. data/chef/travis-cookbooks/ci_environment/python/recipes/package.rb +36 -0
  308. data/chef/travis-cookbooks/ci_environment/python/recipes/pip.rb +38 -0
  309. data/chef/travis-cookbooks/ci_environment/python/recipes/virtualenv.rb +32 -0
  310. data/chef/travis-cookbooks/ci_environment/python/resources/pip.rb +26 -0
  311. data/chef/travis-cookbooks/ci_environment/python/resources/virtualenv.rb +28 -0
  312. data/chef/travis-cookbooks/ci_environment/rabbitmq/README.md +86 -0
  313. data/chef/travis-cookbooks/ci_environment/rabbitmq/attributes/default.rb +8 -0
  314. data/chef/travis-cookbooks/ci_environment/rabbitmq/metadata.rb +63 -0
  315. data/chef/travis-cookbooks/ci_environment/rabbitmq/providers/user.rb +66 -0
  316. data/chef/travis-cookbooks/ci_environment/rabbitmq/providers/vhost.rb +34 -0
  317. data/chef/travis-cookbooks/ci_environment/rabbitmq/recipes/default.rb +63 -0
  318. data/chef/travis-cookbooks/ci_environment/rabbitmq/recipes/with_management_plugin.rb +15 -0
  319. data/chef/travis-cookbooks/ci_environment/rabbitmq/resources/user.rb +25 -0
  320. data/chef/travis-cookbooks/ci_environment/rabbitmq/resources/vhost.rb +22 -0
  321. data/chef/travis-cookbooks/ci_environment/rabbitmq/templates/default/doterlang.cookie.erb +1 -0
  322. data/chef/travis-cookbooks/ci_environment/rabbitmq/templates/default/rabbitmq-env.conf.erb +10 -0
  323. data/chef/travis-cookbooks/ci_environment/rabbitmq/templates/default/rabbitmq.config.erb +5 -0
  324. data/chef/travis-cookbooks/ci_environment/rabbitmq/templates/default/rabbitmq_cluster.config.erb +5 -0
  325. data/chef/travis-cookbooks/ci_environment/ragel/recipes/custom.rb +56 -0
  326. data/chef/travis-cookbooks/ci_environment/ragel/recipes/default.rb +28 -0
  327. data/chef/travis-cookbooks/ci_environment/ramfs/attributes/default.rb +1 -0
  328. data/chef/travis-cookbooks/ci_environment/ramfs/recipes/default.rb +27 -0
  329. data/chef/travis-cookbooks/ci_environment/rebar/README.md +3 -0
  330. data/chef/travis-cookbooks/ci_environment/rebar/attributes/default.rb +2 -0
  331. data/chef/travis-cookbooks/ci_environment/rebar/metadata.rb +7 -0
  332. data/chef/travis-cookbooks/ci_environment/rebar/recipes/default.rb +26 -0
  333. data/chef/travis-cookbooks/ci_environment/redis/attributes/default.rb +7 -0
  334. data/chef/travis-cookbooks/ci_environment/redis/recipes/default.rb +65 -0
  335. data/chef/travis-cookbooks/ci_environment/redis/recipes/ppa.rb +42 -0
  336. data/chef/travis-cookbooks/ci_environment/riak/.gitignore +1 -0
  337. data/chef/travis-cookbooks/ci_environment/riak/README.md +161 -0
  338. data/chef/travis-cookbooks/ci_environment/riak/attributes/api.rb +21 -0
  339. data/chef/travis-cookbooks/ci_environment/riak/attributes/bitcask.rb +22 -0
  340. data/chef/travis-cookbooks/ci_environment/riak/attributes/control.rb +23 -0
  341. data/chef/travis-cookbooks/ci_environment/riak/attributes/core.rb +41 -0
  342. data/chef/travis-cookbooks/ci_environment/riak/attributes/default.rb +32 -0
  343. data/chef/travis-cookbooks/ci_environment/riak/attributes/dets.rb +20 -0
  344. data/chef/travis-cookbooks/ci_environment/riak/attributes/eleveldb.rb +6 -0
  345. data/chef/travis-cookbooks/ci_environment/riak/attributes/erlang.rb +30 -0
  346. data/chef/travis-cookbooks/ci_environment/riak/attributes/err.rb +21 -0
  347. data/chef/travis-cookbooks/ci_environment/riak/attributes/innostore.rb +28 -0
  348. data/chef/travis-cookbooks/ci_environment/riak/attributes/kernel.rb +22 -0
  349. data/chef/travis-cookbooks/ci_environment/riak/attributes/kv.rb +62 -0
  350. data/chef/travis-cookbooks/ci_environment/riak/attributes/lager.rb +31 -0
  351. data/chef/travis-cookbooks/ci_environment/riak/attributes/merge.rb +22 -0
  352. data/chef/travis-cookbooks/ci_environment/riak/attributes/netdev.rb +22 -0
  353. data/chef/travis-cookbooks/ci_environment/riak/attributes/package.rb +30 -0
  354. data/chef/travis-cookbooks/ci_environment/riak/attributes/sasl.rb +25 -0
  355. data/chef/travis-cookbooks/ci_environment/riak/attributes/search.rb +19 -0
  356. data/chef/travis-cookbooks/ci_environment/riak/attributes/sysmon.rb +25 -0
  357. data/chef/travis-cookbooks/ci_environment/riak/libraries/riak_template_helper.rb +180 -0
  358. data/chef/travis-cookbooks/ci_environment/riak/metadata.rb +32 -0
  359. data/chef/travis-cookbooks/ci_environment/riak/providers/cluster.rb +80 -0
  360. data/chef/travis-cookbooks/ci_environment/riak/recipes/autoconf.rb +47 -0
  361. data/chef/travis-cookbooks/ci_environment/riak/recipes/config.rb +70 -0
  362. data/chef/travis-cookbooks/ci_environment/riak/recipes/default.rb +155 -0
  363. data/chef/travis-cookbooks/ci_environment/riak/recipes/innostore.rb +74 -0
  364. data/chef/travis-cookbooks/ci_environment/riak/recipes/iptables.rb +25 -0
  365. data/chef/travis-cookbooks/ci_environment/riak/resources/cluster.rb +27 -0
  366. data/chef/travis-cookbooks/ci_environment/riak/templates/default/app.config.erb +2 -0
  367. data/chef/travis-cookbooks/ci_environment/riak/templates/default/iptables.erb +13 -0
  368. data/chef/travis-cookbooks/ci_environment/riak/templates/default/vm.args.erb +2 -0
  369. data/chef/travis-cookbooks/ci_environment/rvm/attributes/default.rb +1 -0
  370. data/chef/travis-cookbooks/ci_environment/rvm/attributes/multi.rb +4 -0
  371. data/chef/travis-cookbooks/ci_environment/rvm/files/default/gemsets/default.gems +1 -0
  372. data/chef/travis-cookbooks/ci_environment/rvm/files/default/gemsets/global.gems +2 -0
  373. data/chef/travis-cookbooks/ci_environment/rvm/files/default/gemsets/jruby/global.gems +4 -0
  374. data/chef/travis-cookbooks/ci_environment/rvm/files/default/gemsets/ruby/1.8.6/global.gems +2 -0
  375. data/chef/travis-cookbooks/ci_environment/rvm/files/default/rvm.sh +3 -0
  376. data/chef/travis-cookbooks/ci_environment/rvm/metadata.json +43 -0
  377. data/chef/travis-cookbooks/ci_environment/rvm/metadata.rb +25 -0
  378. data/chef/travis-cookbooks/ci_environment/rvm/recipes/default.rb +76 -0
  379. data/chef/travis-cookbooks/ci_environment/rvm/recipes/multi.rb +83 -0
  380. data/chef/travis-cookbooks/ci_environment/rvm/templates/default/dot_rvmrc.sh.erb +3 -0
  381. data/chef/travis-cookbooks/ci_environment/sbt/README.md +3 -0
  382. data/chef/travis-cookbooks/ci_environment/sbt/attributes/default.rb +10 -0
  383. data/chef/travis-cookbooks/ci_environment/sbt/metadata.json +32 -0
  384. data/chef/travis-cookbooks/ci_environment/sbt/metadata.rb +8 -0
  385. data/chef/travis-cookbooks/ci_environment/sbt/recipes/default.rb +69 -0
  386. data/chef/travis-cookbooks/ci_environment/scons/recipes/default.rb +3 -0
  387. data/chef/travis-cookbooks/ci_environment/sphinx/README.md +0 -0
  388. data/chef/travis-cookbooks/ci_environment/sphinx/attributes/default.rb +8 -0
  389. data/chef/travis-cookbooks/ci_environment/sphinx/metadata.rb +17 -0
  390. data/chef/travis-cookbooks/ci_environment/sphinx/recipes/all.rb +64 -0
  391. data/chef/travis-cookbooks/ci_environment/sphinx/recipes/default.rb +24 -0
  392. data/chef/travis-cookbooks/ci_environment/sqlite/metadata.rb +11 -0
  393. data/chef/travis-cookbooks/ci_environment/sqlite/recipes/default.rb +30 -0
  394. data/chef/travis-cookbooks/ci_environment/subversion/recipes/default.rb +24 -0
  395. data/chef/travis-cookbooks/ci_environment/sweeper/recipes/default.rb +45 -0
  396. data/chef/travis-cookbooks/ci_environment/sysctl/attributes/default.rb +5 -0
  397. data/chef/travis-cookbooks/ci_environment/sysctl/recipes/default.rb +6 -0
  398. data/chef/travis-cookbooks/ci_environment/sysctl/templates/default/sysctl.conf.erb +2 -0
  399. data/chef/travis-cookbooks/ci_environment/timezone/attributes/default.rb +1 -0
  400. data/chef/travis-cookbooks/ci_environment/timezone/metadata.json +35 -0
  401. data/chef/travis-cookbooks/ci_environment/timezone/metadata.rb +9 -0
  402. data/chef/travis-cookbooks/ci_environment/timezone/recipes/._default.rb +0 -0
  403. data/chef/travis-cookbooks/ci_environment/timezone/recipes/default.rb +38 -0
  404. data/chef/travis-cookbooks/ci_environment/timezone/templates/default/timezone.conf.erb +1 -0
  405. data/chef/travis-cookbooks/ci_environment/travis_build_environment/attributes/default.rb +18 -0
  406. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/ci_user/dot_gemrc.yml +1 -0
  407. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/ci_user/known_hosts +1 -0
  408. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/ci_user/travis_environment.sh +27 -0
  409. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/etc/default/locale.sh +1 -0
  410. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/etc/sudoers/env_keep +1 -0
  411. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/root/dot_bashrc.sh +86 -0
  412. data/chef/travis-cookbooks/ci_environment/travis_build_environment/files/default/root/recover_eth0.sh +8 -0
  413. data/chef/travis-cookbooks/ci_environment/travis_build_environment/recipes/ci_user.rb +104 -0
  414. data/chef/travis-cookbooks/ci_environment/travis_build_environment/recipes/default.rb +136 -0
  415. data/chef/travis-cookbooks/ci_environment/travis_build_environment/recipes/root.rb +44 -0
  416. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/ci_user/ci_environment_metadata.yml.erb +2 -0
  417. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/ci_user/dot_bashrc.sh +115 -0
  418. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/etc/apt/assumeyes.erb +1 -0
  419. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/etc/apt/timeouts.erb +3 -0
  420. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/etc/environment.sh.erb +11 -0
  421. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/etc/hostname.erb +12 -0
  422. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/etc/hosts.erb +30 -0
  423. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/etc/security/limits.conf.erb +62 -0
  424. data/chef/travis-cookbooks/ci_environment/travis_build_environment/templates/default/root/dot_bashrc.sh.erb +88 -0
  425. data/chef/travis-cookbooks/ci_environment/unarchivers/recipes/default.rb +29 -0
  426. data/chef/travis-cookbooks/ci_environment/util-linux/recipes/default.rb +5 -0
  427. data/chef/travis-cookbooks/ci_environment/vim/README.md +39 -0
  428. data/chef/travis-cookbooks/ci_environment/vim/attributes/default.rb +20 -0
  429. data/chef/travis-cookbooks/ci_environment/vim/metadata.rb +6 -0
  430. data/chef/travis-cookbooks/ci_environment/vim/recipes/default.rb +24 -0
  431. data/chef/travis-cookbooks/ci_environment/xserver/files/default/etc/init.d/xvfb.sh +24 -0
  432. data/chef/travis-cookbooks/ci_environment/xserver/recipes/default.rb +37 -0
  433. data/chef/travis-cookbooks/ci_environment/zeromq/attributes/default.rb +7 -0
  434. data/chef/travis-cookbooks/ci_environment/zeromq/recipes/20x.rb +33 -0
  435. data/chef/travis-cookbooks/ci_environment/zeromq/recipes/default.rb +44 -0
  436. data/chef/travis-cookbooks/ci_environment/zookeeper/recipes/cdh4.rb +51 -0
  437. data/chef/travis-cookbooks/messaging_broker/build-essential/README.md +24 -0
  438. data/chef/travis-cookbooks/messaging_broker/build-essential/metadata.rb +10 -0
  439. data/chef/travis-cookbooks/messaging_broker/build-essential/recipes/default.rb +45 -0
  440. data/chef/travis-cookbooks/messaging_broker/emacs/metadata.rb +11 -0
  441. data/chef/travis-cookbooks/messaging_broker/emacs/recipes/default.rb +21 -0
  442. data/chef/travis-cookbooks/messaging_broker/erlang/attributes/default.rb +1 -0
  443. data/chef/travis-cookbooks/messaging_broker/erlang/metadata.rb +11 -0
  444. data/chef/travis-cookbooks/messaging_broker/erlang/recipes/default.rb +27 -0
  445. data/chef/travis-cookbooks/messaging_broker/git/README.rdoc +37 -0
  446. data/chef/travis-cookbooks/messaging_broker/git/metadata.rb +16 -0
  447. data/chef/travis-cookbooks/messaging_broker/git/recipes/default.rb +24 -0
  448. data/chef/travis-cookbooks/messaging_broker/git/recipes/server.rb +34 -0
  449. data/chef/travis-cookbooks/messaging_broker/git/templates/default/sv-git-daemon-log-run.erb +2 -0
  450. data/chef/travis-cookbooks/messaging_broker/git/templates/default/sv-git-daemon-run.erb +3 -0
  451. data/chef/travis-cookbooks/messaging_broker/haproxy/README.md +79 -0
  452. data/chef/travis-cookbooks/messaging_broker/haproxy/attributes/default.rb +22 -0
  453. data/chef/travis-cookbooks/messaging_broker/haproxy/metadata.rb +13 -0
  454. data/chef/travis-cookbooks/messaging_broker/haproxy/recipes/app_lb.rb +50 -0
  455. data/chef/travis-cookbooks/messaging_broker/haproxy/recipes/default.rb +42 -0
  456. data/chef/travis-cookbooks/messaging_broker/haproxy/templates/default/haproxy-app_lb.cfg.erb +34 -0
  457. data/chef/travis-cookbooks/messaging_broker/haproxy/templates/default/haproxy-default.erb +4 -0
  458. data/chef/travis-cookbooks/messaging_broker/haproxy/templates/default/haproxy.cfg.erb +27 -0
  459. data/chef/travis-cookbooks/messaging_broker/iptables/definitions/iptables_rule.rb +35 -0
  460. data/chef/travis-cookbooks/messaging_broker/iptables/files/default/rebuild-iptables +284 -0
  461. data/chef/travis-cookbooks/messaging_broker/iptables/metadata.rb +10 -0
  462. data/chef/travis-cookbooks/messaging_broker/iptables/recipes/default.rb +50 -0
  463. data/chef/travis-cookbooks/messaging_broker/iptables/templates/default/all_established.erb +2 -0
  464. data/chef/travis-cookbooks/messaging_broker/iptables/templates/default/all_icmp.erb +2 -0
  465. data/chef/travis-cookbooks/messaging_broker/iptables/templates/default/iptables_load.erb +3 -0
  466. data/chef/travis-cookbooks/messaging_broker/openssl/README.md +37 -0
  467. data/chef/travis-cookbooks/messaging_broker/openssl/libraries/secure_password.rb +37 -0
  468. data/chef/travis-cookbooks/messaging_broker/openssl/metadata.rb +8 -0
  469. data/chef/travis-cookbooks/messaging_broker/openssl/recipes/default.rb +19 -0
  470. data/chef/travis-cookbooks/messaging_broker/rabbitmq/README.md +86 -0
  471. data/chef/travis-cookbooks/messaging_broker/rabbitmq/attributes/default.rb +10 -0
  472. data/chef/travis-cookbooks/messaging_broker/rabbitmq/metadata.rb +63 -0
  473. data/chef/travis-cookbooks/messaging_broker/rabbitmq/providers/user.rb +66 -0
  474. data/chef/travis-cookbooks/messaging_broker/rabbitmq/providers/vhost.rb +34 -0
  475. data/chef/travis-cookbooks/messaging_broker/rabbitmq/recipes/cluster.rb +35 -0
  476. data/chef/travis-cookbooks/messaging_broker/rabbitmq/recipes/default.rb +51 -0
  477. data/chef/travis-cookbooks/messaging_broker/rabbitmq/resources/user.rb +25 -0
  478. data/chef/travis-cookbooks/messaging_broker/rabbitmq/resources/vhost.rb +22 -0
  479. data/chef/travis-cookbooks/messaging_broker/rabbitmq/templates/default/doterlang.cookie.erb +1 -0
  480. data/chef/travis-cookbooks/messaging_broker/rabbitmq/templates/default/rabbitmq-env.conf.erb +10 -0
  481. data/chef/travis-cookbooks/messaging_broker/rabbitmq/templates/default/rabbitmq_cluster.config.erb +5 -0
  482. data/chef/travis-cookbooks/worker_host/.gitignore +1 -0
  483. data/chef/travis-cookbooks/worker_host/ant/README.md +51 -0
  484. data/chef/travis-cookbooks/worker_host/ant/metadata.rb +12 -0
  485. data/chef/travis-cookbooks/worker_host/ant/recipes/default.rb +36 -0
  486. data/chef/travis-cookbooks/worker_host/apt/README.md +109 -0
  487. data/chef/travis-cookbooks/worker_host/apt/files/default/apt-cacher +9 -0
  488. data/chef/travis-cookbooks/worker_host/apt/files/default/apt-cacher.conf +144 -0
  489. data/chef/travis-cookbooks/worker_host/apt/files/default/apt-proxy-v2.conf +50 -0
  490. data/chef/travis-cookbooks/worker_host/apt/metadata.json +34 -0
  491. data/chef/travis-cookbooks/worker_host/apt/metadata.rb +13 -0
  492. data/chef/travis-cookbooks/worker_host/apt/providers/repository.rb +72 -0
  493. data/chef/travis-cookbooks/worker_host/apt/recipes/cacher-client.rb +37 -0
  494. data/chef/travis-cookbooks/worker_host/apt/recipes/cacher.rb +45 -0
  495. data/chef/travis-cookbooks/worker_host/apt/recipes/default.rb +33 -0
  496. data/chef/travis-cookbooks/worker_host/apt/resources/repository.rb +30 -0
  497. data/chef/travis-cookbooks/worker_host/build-essential/README.md +24 -0
  498. data/chef/travis-cookbooks/worker_host/build-essential/metadata.rb +10 -0
  499. data/chef/travis-cookbooks/worker_host/build-essential/recipes/default.rb +45 -0
  500. data/chef/travis-cookbooks/worker_host/chef-client/CHANGELOG.md +29 -0
  501. data/chef/travis-cookbooks/worker_host/chef-client/CONTRIBUTING +29 -0
  502. data/chef/travis-cookbooks/worker_host/chef-client/LICENSE +201 -0
  503. data/chef/travis-cookbooks/worker_host/chef-client/README.md +265 -0
  504. data/chef/travis-cookbooks/worker_host/chef-client/attributes/default.rb +70 -0
  505. data/chef/travis-cookbooks/worker_host/chef-client/metadata.json +44 -0
  506. data/chef/travis-cookbooks/worker_host/chef-client/metadata.rb +15 -0
  507. data/chef/travis-cookbooks/worker_host/chef-client/recipes/config.rb +53 -0
  508. data/chef/travis-cookbooks/worker_host/chef-client/recipes/cron.rb +83 -0
  509. data/chef/travis-cookbooks/worker_host/chef-client/recipes/default.rb +20 -0
  510. data/chef/travis-cookbooks/worker_host/chef-client/recipes/delete_validation.rb +26 -0
  511. data/chef/travis-cookbooks/worker_host/chef-client/recipes/service.rb +242 -0
  512. data/chef/travis-cookbooks/worker_host/chef-client/templates/arch/conf.d/chef-client.conf.erb +5 -0
  513. data/chef/travis-cookbooks/worker_host/chef-client/templates/arch/rc.d/chef-client.erb +76 -0
  514. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/chef-client.pill.erb +14 -0
  515. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/client.rb.erb +36 -0
  516. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/debian/default/chef-client.erb +4 -0
  517. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/debian/init.d/chef-client.erb +185 -0
  518. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/debian/init/chef-client.conf.erb +17 -0
  519. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/redhat/init.d/chef-client.erb +110 -0
  520. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/redhat/sysconfig/chef-client.erb +15 -0
  521. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/solaris/chef-client.erb +78 -0
  522. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/solaris/manifest.xml.erb +103 -0
  523. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/sv-chef-client-log-run.erb +2 -0
  524. data/chef/travis-cookbooks/worker_host/chef-client/templates/default/sv-chef-client-run.erb +4 -0
  525. data/chef/travis-cookbooks/worker_host/chef-client/templates/windows/chef-client.xml.erb +38 -0
  526. data/chef/travis-cookbooks/worker_host/chef_handler/CHANGELOG.md +12 -0
  527. data/chef/travis-cookbooks/worker_host/chef_handler/CONTRIBUTING +29 -0
  528. data/chef/travis-cookbooks/worker_host/chef_handler/LICENSE +201 -0
  529. data/chef/travis-cookbooks/worker_host/chef_handler/README.md +103 -0
  530. data/chef/travis-cookbooks/worker_host/chef_handler/attributes/default.rb +21 -0
  531. data/chef/travis-cookbooks/worker_host/chef_handler/files/default/handlers/README +1 -0
  532. data/chef/travis-cookbooks/worker_host/chef_handler/files/default/handlers/campfire_handler.rb +61 -0
  533. data/chef/travis-cookbooks/worker_host/chef_handler/metadata.json +29 -0
  534. data/chef/travis-cookbooks/worker_host/chef_handler/metadata.rb +6 -0
  535. data/chef/travis-cookbooks/worker_host/chef_handler/providers/default.rb +83 -0
  536. data/chef/travis-cookbooks/worker_host/chef_handler/recipes/campfire.rb +15 -0
  537. data/chef/travis-cookbooks/worker_host/chef_handler/recipes/default.rb +31 -0
  538. data/chef/travis-cookbooks/worker_host/chef_handler/recipes/json_file.rb +28 -0
  539. data/chef/travis-cookbooks/worker_host/chef_handler/resources/default.rb +34 -0
  540. data/chef/travis-cookbooks/worker_host/collectd-librato/.gitignore +1 -0
  541. data/chef/travis-cookbooks/worker_host/collectd-librato/README.md +22 -0
  542. data/chef/travis-cookbooks/worker_host/collectd-librato/attributes/collectd_librato.rb +4 -0
  543. data/chef/travis-cookbooks/worker_host/collectd-librato/metadata.rb +11 -0
  544. data/chef/travis-cookbooks/worker_host/collectd-librato/recipes/default.rb +41 -0
  545. data/chef/travis-cookbooks/worker_host/collectd/README.rdoc +85 -0
  546. data/chef/travis-cookbooks/worker_host/collectd/attributes/default.rb +33 -0
  547. data/chef/travis-cookbooks/worker_host/collectd/definitions/collectd_plugin.rb +52 -0
  548. data/chef/travis-cookbooks/worker_host/collectd/libraries/default.rb +47 -0
  549. data/chef/travis-cookbooks/worker_host/collectd/metadata.rb +15 -0
  550. data/chef/travis-cookbooks/worker_host/collectd/recipes/client.rb +33 -0
  551. data/chef/travis-cookbooks/worker_host/collectd/recipes/collectd_web.rb +49 -0
  552. data/chef/travis-cookbooks/worker_host/collectd/recipes/default.rb +90 -0
  553. data/chef/travis-cookbooks/worker_host/collectd/recipes/server.rb +24 -0
  554. data/chef/travis-cookbooks/worker_host/collectd/templates/default/collectd.conf.erb +23 -0
  555. data/chef/travis-cookbooks/worker_host/collectd/templates/default/collectd_web.conf.erb +32 -0
  556. data/chef/travis-cookbooks/worker_host/collectd/templates/default/collection.conf.erb +2 -0
  557. data/chef/travis-cookbooks/worker_host/collectd/templates/default/plugin.conf.erb +15 -0
  558. data/chef/travis-cookbooks/worker_host/collectd/templates/default/python_plugin.conf.erb +20 -0
  559. data/chef/travis-cookbooks/worker_host/collectd/templates/default/thresholds.conf.erb +37 -0
  560. data/chef/travis-cookbooks/worker_host/disks/attributes/default.rb +1 -0
  561. data/chef/travis-cookbooks/worker_host/disks/recipes/default.rb +15 -0
  562. data/chef/travis-cookbooks/worker_host/emacs/emacs/metadata.rb +11 -0
  563. data/chef/travis-cookbooks/worker_host/emacs/emacs/recipes/default.rb +21 -0
  564. data/chef/travis-cookbooks/worker_host/emacs/metadata.rb +11 -0
  565. data/chef/travis-cookbooks/worker_host/emacs/recipes/default.rb +21 -0
  566. data/chef/travis-cookbooks/worker_host/git/README.rdoc +37 -0
  567. data/chef/travis-cookbooks/worker_host/git/metadata.rb +11 -0
  568. data/chef/travis-cookbooks/worker_host/git/recipes/default.rb +24 -0
  569. data/chef/travis-cookbooks/worker_host/git/templates/default/sv-git-daemon-log-run.erb +2 -0
  570. data/chef/travis-cookbooks/worker_host/git/templates/default/sv-git-daemon-run.erb +3 -0
  571. data/chef/travis-cookbooks/worker_host/iptables/files/default/iptables_rules +13 -0
  572. data/chef/travis-cookbooks/worker_host/iptables/metadata.rb +10 -0
  573. data/chef/travis-cookbooks/worker_host/iptables/recipes/default.rb +48 -0
  574. data/chef/travis-cookbooks/worker_host/iptables/templates/default/iptables_load.erb +3 -0
  575. data/chef/travis-cookbooks/worker_host/java/README.md +102 -0
  576. data/chef/travis-cookbooks/worker_host/java/attributes/default.rb +29 -0
  577. data/chef/travis-cookbooks/worker_host/java/files/default/java.seed +11 -0
  578. data/chef/travis-cookbooks/worker_host/java/metadata.rb +16 -0
  579. data/chef/travis-cookbooks/worker_host/java/recipes/default.rb +61 -0
  580. data/chef/travis-cookbooks/worker_host/java/recipes/openjdk.rb +48 -0
  581. data/chef/travis-cookbooks/worker_host/java/recipes/sun.rb +49 -0
  582. data/chef/travis-cookbooks/worker_host/jruby/attributes/default.rb +5 -0
  583. data/chef/travis-cookbooks/worker_host/jruby/metadata.rb +8 -0
  584. data/chef/travis-cookbooks/worker_host/jruby/recipes/default.rb +23 -0
  585. data/chef/travis-cookbooks/worker_host/monit/attributes/default.rb +3 -0
  586. data/chef/travis-cookbooks/worker_host/monit/files/default/default.monit +1 -0
  587. data/chef/travis-cookbooks/worker_host/monit/recipes/default.rb +52 -0
  588. data/chef/travis-cookbooks/worker_host/monit/templates/default/alerts.erb +12 -0
  589. data/chef/travis-cookbooks/worker_host/monit/templates/default/filesystems.erb +6 -0
  590. data/chef/travis-cookbooks/worker_host/monit/templates/default/monitrc.erb +6 -0
  591. data/chef/travis-cookbooks/worker_host/monit/templates/default/system.erb +4 -0
  592. data/chef/travis-cookbooks/worker_host/networking_basic/README.rdoc +8 -0
  593. data/chef/travis-cookbooks/worker_host/networking_basic/metadata.json +35 -0
  594. data/chef/travis-cookbooks/worker_host/networking_basic/metadata.rb +10 -0
  595. data/chef/travis-cookbooks/worker_host/networking_basic/recipes/default.rb +38 -0
  596. data/chef/travis-cookbooks/worker_host/runit/CHANGELOG.md +3 -0
  597. data/chef/travis-cookbooks/worker_host/runit/CONTRIBUTING +29 -0
  598. data/chef/travis-cookbooks/worker_host/runit/LICENSE +201 -0
  599. data/chef/travis-cookbooks/worker_host/runit/README.md +226 -0
  600. data/chef/travis-cookbooks/worker_host/runit/attributes/default.rb +31 -0
  601. data/chef/travis-cookbooks/worker_host/runit/definitions/runit_service.rb +164 -0
  602. data/chef/travis-cookbooks/worker_host/runit/files/default/runit.seed +1 -0
  603. data/chef/travis-cookbooks/worker_host/runit/files/default/runsvdir +0 -0
  604. data/chef/travis-cookbooks/worker_host/runit/files/ubuntu-6.10/runsvdir +6 -0
  605. data/chef/travis-cookbooks/worker_host/runit/files/ubuntu-7.04/runsvdir +7 -0
  606. data/chef/travis-cookbooks/worker_host/runit/files/ubuntu-7.10/runsvdir +7 -0
  607. data/chef/travis-cookbooks/worker_host/runit/files/ubuntu-8.04/runsvdir +7 -0
  608. data/chef/travis-cookbooks/worker_host/runit/metadata.json +102 -0
  609. data/chef/travis-cookbooks/worker_host/runit/metadata.rb +37 -0
  610. data/chef/travis-cookbooks/worker_host/runit/recipes/default.rb +72 -0
  611. data/chef/travis-cookbooks/worker_host/runit/templates/gentoo/runit-start.sh.erb +32 -0
  612. data/chef/travis-cookbooks/worker_host/rvm/attributes/default.rb +20 -0
  613. data/chef/travis-cookbooks/worker_host/rvm/attributes/install.rb +1 -0
  614. data/chef/travis-cookbooks/worker_host/rvm/attributes/ree.rb +1 -0
  615. data/chef/travis-cookbooks/worker_host/rvm/attributes/ruby_187.rb +2 -0
  616. data/chef/travis-cookbooks/worker_host/rvm/attributes/ruby_192.rb +2 -0
  617. data/chef/travis-cookbooks/worker_host/rvm/files/default/rvm.sh +1 -0
  618. data/chef/travis-cookbooks/worker_host/rvm/metadata.rb +27 -0
  619. data/chef/travis-cookbooks/worker_host/rvm/recipes/default.rb +27 -0
  620. data/chef/travis-cookbooks/worker_host/rvm/recipes/install.rb +36 -0
  621. data/chef/travis-cookbooks/worker_host/rvm/recipes/multi.rb +48 -0
  622. data/chef/travis-cookbooks/worker_host/rvm/recipes/ree.rb +6 -0
  623. data/chef/travis-cookbooks/worker_host/rvm/recipes/ruby_187.rb +7 -0
  624. data/chef/travis-cookbooks/worker_host/rvm/recipes/ruby_192.rb +7 -0
  625. data/chef/travis-cookbooks/worker_host/ssh/recipes/sshd.rb +12 -0
  626. data/chef/travis-cookbooks/worker_host/ssh/templates/default/sshd_config.erb +87 -0
  627. data/chef/travis-cookbooks/worker_host/sudo/attributes/sudoers.rb +2 -0
  628. data/chef/travis-cookbooks/worker_host/sudo/recipes/default.rb +14 -0
  629. data/chef/travis-cookbooks/worker_host/sudo/templates/default/sudoers.erb +19 -0
  630. data/chef/travis-cookbooks/worker_host/travis_worker/attributes/default.rb +13 -0
  631. data/chef/travis-cookbooks/worker_host/travis_worker/metadata.rb +6 -0
  632. data/chef/travis-cookbooks/worker_host/travis_worker/recipes/default.rb +130 -0
  633. data/chef/travis-cookbooks/worker_host/travis_worker/templates/default/sv-travis-worker-log-run.erb +2 -0
  634. data/chef/travis-cookbooks/worker_host/travis_worker/templates/default/sv-travis-worker-run.erb +4 -0
  635. data/chef/travis-cookbooks/worker_host/travis_worker/templates/default/travis-worker.monitrc.erb +3 -0
  636. data/chef/travis-cookbooks/worker_host/travis_worker/templates/default/worker.yml.erb +14 -0
  637. data/chef/travis-cookbooks/worker_host/travis_worker_collectd/metadata.rb +1 -0
  638. data/chef/travis-cookbooks/worker_host/travis_worker_collectd/recipes/default.rb +11 -0
  639. data/chef/travis-cookbooks/worker_host/users/attributes/default.rb +2 -0
  640. data/chef/travis-cookbooks/worker_host/users/metadata.rb +9 -0
  641. data/chef/travis-cookbooks/worker_host/users/recipes/default.rb +83 -0
  642. data/chef/travis-cookbooks/worker_host/users/templates/default/authorized_keys.pub +4 -0
  643. data/chef/travis-cookbooks/worker_host/vim/README.md +39 -0
  644. data/chef/travis-cookbooks/worker_host/vim/attributes/default.rb +20 -0
  645. data/chef/travis-cookbooks/worker_host/vim/metadata.rb +6 -0
  646. data/chef/travis-cookbooks/worker_host/vim/recipes/default.rb +24 -0
  647. data/chef/travis-cookbooks/worker_host/virtualbox/attributes/default.rb +0 -0
  648. data/chef/travis-cookbooks/worker_host/virtualbox/metadata.rb +11 -0
  649. data/chef/travis-cookbooks/worker_host/virtualbox/recipes/default.rb +13 -0
  650. data/ci_build.sh +20 -0
  651. data/docs/ci_yml.md +0 -3
  652. data/features/ci.feature +0 -16
  653. data/features/config/secrets.yml.example +0 -1
  654. data/features/step_definitions/ci_steps.rb +8 -17
  655. data/lib/generators/lobot/config_generator.rb +1 -2
  656. data/lib/generators/lobot/install_generator.rb +2 -18
  657. data/lib/generators/lobot/templates/ci.yml +1 -1
  658. data/lib/generators/lobot/templates/ci_build.sh +7 -7
  659. data/lib/generators/lobot/templates/soloistrc +12 -3
  660. data/lib/lobot.rb +1 -0
  661. data/lib/lobot/recipes/ci.rb +78 -0
  662. data/lib/lobot/tasks/ci.rake +13 -10
  663. data/lib/lobot/version.rb +2 -2
  664. data/lobot.gemspec +5 -5
  665. data/script/bootstrap_server.sh +32 -0
  666. data/spec/install_spec.rb +3 -60
  667. metadata +754 -74
  668. data/lib/generators/lobot/templates/bootstrap_server.sh +0 -58
  669. data/lib/generators/lobot/templates/capistrano-ci.rb +0 -74
  670. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_ci/recipes/default.rb +0 -10
  671. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_ci/recipes/fonts.rb +0 -5
  672. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_ci/recipes/git_config.rb +0 -11
  673. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_ci/recipes/jenkins.rb +0 -45
  674. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_ci/recipes/teamcity.rb +0 -43
  675. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_ci/recipes/xvfb.rb +0 -7
  676. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/files/default/cacert.pem +0 -3721
  677. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/libraries/marker.rb +0 -42
  678. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/ca_cert.rb +0 -4
  679. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/curl_devel.rb +0 -3
  680. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/daemontools.rb +0 -15
  681. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/file.rb +0 -19
  682. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/imagemagick.rb +0 -45
  683. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/libxml_prereqs.rb +0 -12
  684. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/mongo_2_0.rb +0 -28
  685. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/mysql_5_1.rb +0 -108
  686. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/mysql_5_5.rb +0 -86
  687. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/nginx.rb +0 -65
  688. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/node_js.rb +0 -15
  689. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/postgres.rb +0 -80
  690. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/sqlite.rb +0 -20
  691. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/recipes/swap.rb +0 -17
  692. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/templates/default/my-conf.erb +0 -2
  693. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/templates/default/nginx-conf.erb +0 -42
  694. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/templates/default/nginx-mime-types.erb +0 -75
  695. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/templates/default/nginx-run-script.erb +0 -2
  696. data/lib/generators/lobot/templates/chef/cookbooks/pivotal_server/templates/default/postgres-run-script.erb +0 -2
@@ -0,0 +1,567 @@
1
+ # Cassandra storage config YAML
2
+
3
+ # NOTE:
4
+ # See http://wiki.apache.org/cassandra/StorageConfiguration for
5
+ # full explanations of configuration directives
6
+ # /NOTE
7
+
8
+ # The name of the cluster. This is mainly used to prevent machines in
9
+ # one logical cluster from joining another.
10
+ cluster_name: 'Test Cluster'
11
+
12
+ # You should always specify InitialToken when setting up a production
13
+ # cluster for the first time, and often when adding capacity later.
14
+ # The principle is that each node should be given an equal slice of
15
+ # the token ring; see http://wiki.apache.org/cassandra/Operations
16
+ # for more details.
17
+ #
18
+ # If blank, Cassandra will request a token bisecting the range of
19
+ # the heaviest-loaded existing node. If there is no load information
20
+ # available, such as is the case with a new cluster, it will pick
21
+ # a random token, which will lead to hot spots.
22
+ initial_token:
23
+
24
+ # See http://wiki.apache.org/cassandra/HintedHandoff
25
+ hinted_handoff_enabled: true
26
+ # this defines the maximum amount of time a dead host will have hints
27
+ # generated. After it has been dead this long, hints will be dropped.
28
+ max_hint_window_in_ms: 3600000 # one hour
29
+ # Sleep this long after delivering each hint
30
+ hinted_handoff_throttle_delay_in_ms: 1
31
+
32
+ # The following setting populates the page cache on memtable flush and compaction
33
+ # WARNING: Enable this setting only when the whole node's data fits in memory.
34
+ # Defaults to: false
35
+ # populate_io_cache_on_flush: false
36
+
37
+ # authentication backend, implementing IAuthenticator; used to identify users
38
+ authenticator: org.apache.cassandra.auth.AllowAllAuthenticator
39
+
40
+ # authorization backend, implementing IAuthority; used to limit access/provide permissions
41
+ authority: org.apache.cassandra.auth.AllowAllAuthority
42
+
43
+ # The partitioner is responsible for distributing rows (by key) across
44
+ # nodes in the cluster. Any IPartitioner may be used, including your
45
+ # own as long as it is on the classpath. Out of the box, Cassandra
46
+ # provides org.apache.cassandra.dht.RandomPartitioner
47
+ # org.apache.cassandra.dht.ByteOrderedPartitioner,
48
+ # org.apache.cassandra.dht.OrderPreservingPartitioner (deprecated),
49
+ # and org.apache.cassandra.dht.CollatingOrderPreservingPartitioner
50
+ # (deprecated).
51
+ #
52
+ # - RandomPartitioner distributes rows across the cluster evenly by md5.
53
+ # When in doubt, this is the best option.
54
+ # - ByteOrderedPartitioner orders rows lexically by key bytes. BOP allows
55
+ # scanning rows in key order, but the ordering can generate hot spots
56
+ # for sequential insertion workloads.
57
+ # - OrderPreservingPartitioner is an obsolete form of BOP, that stores
58
+ # - keys in a less-efficient format and only works with keys that are
59
+ # UTF8-encoded Strings.
60
+ # - CollatingOPP colates according to EN,US rules rather than lexical byte
61
+ # ordering. Use this as an example if you need custom collation.
62
+ #
63
+ # See http://wiki.apache.org/cassandra/Operations for more on
64
+ # partitioners and token selection.
65
+ partitioner: org.apache.cassandra.dht.RandomPartitioner
66
+
67
+ # directories where Cassandra should store data on disk.
68
+ data_file_directories:
69
+ - <%= File.join(node.cassandra.data_root_dir, 'data') %>
70
+
71
+ # commit log
72
+ commitlog_directory: <%= File.join(node.cassandra.data_root_dir, 'commitlog') %>
73
+
74
+ # Maximum size of the key cache in memory.
75
+ #
76
+ # Each key cache hit saves 1 seek and each row cache hit saves 2 seeks at the
77
+ # minimum, sometimes more. The key cache is fairly tiny for the amount of
78
+ # time it saves, so it's worthwhile to use it at large numbers.
79
+ # The row cache saves even more time, but must store the whole values of
80
+ # its rows, so it is extremely space-intensive. It's best to only use the
81
+ # row cache if you have hot rows or static rows.
82
+ #
83
+ # NOTE: if you reduce the size, you may not get you hottest keys loaded on startup.
84
+ #
85
+ # Default value is empty to make it "auto" (min(5% of Heap (in MB), 100MB)). Set to 0 to disable key cache.
86
+ key_cache_size_in_mb:
87
+
88
+ # Duration in seconds after which Cassandra should
89
+ # safe the keys cache. Caches are saved to saved_caches_directory as
90
+ # specified in this configuration file.
91
+ #
92
+ # Saved caches greatly improve cold-start speeds, and is relatively cheap in
93
+ # terms of I/O for the key cache. Row cache saving is much more expensive and
94
+ # has limited use.
95
+ #
96
+ # Default is 14400 or 4 hours.
97
+ key_cache_save_period: 14400
98
+
99
+ # Number of keys from the key cache to save
100
+ # Disabled by default, meaning all keys are going to be saved
101
+ # key_cache_keys_to_save: 100
102
+
103
+ # Maximum size of the row cache in memory.
104
+ # NOTE: if you reduce the size, you may not get you hottest keys loaded on startup.
105
+ #
106
+ # Default value is 0, to disable row caching.
107
+ row_cache_size_in_mb: 0
108
+
109
+ # Duration in seconds after which Cassandra should
110
+ # safe the row cache. Caches are saved to saved_caches_directory as specified
111
+ # in this configuration file.
112
+ #
113
+ # Saved caches greatly improve cold-start speeds, and is relatively cheap in
114
+ # terms of I/O for the key cache. Row cache saving is much more expensive and
115
+ # has limited use.
116
+ #
117
+ # Default is 0 to disable saving the row cache.
118
+ row_cache_save_period: 0
119
+
120
+ # Number of keys from the row cache to save
121
+ # Disabled by default, meaning all keys are going to be saved
122
+ # row_cache_keys_to_save: 100
123
+
124
+ # The provider for the row cache to use.
125
+ #
126
+ # Supported values are: ConcurrentLinkedHashCacheProvider, SerializingCacheProvider
127
+ #
128
+ # SerializingCacheProvider serialises the contents of the row and stores
129
+ # it in native memory, i.e., off the JVM Heap. Serialized rows take
130
+ # significantly less memory than "live" rows in the JVM, so you can cache
131
+ # more rows in a given memory footprint. And storing the cache off-heap
132
+ # means you can use smaller heap sizes, reducing the impact of GC pauses.
133
+ #
134
+ # It is also valid to specify the fully-qualified class name to a class
135
+ # that implements org.apache.cassandra.cache.IRowCacheProvider.
136
+ #
137
+ # Defaults to SerializingCacheProvider
138
+ row_cache_provider: SerializingCacheProvider
139
+
140
+ # saved caches
141
+ saved_caches_directory: <%= File.join(node.cassandra.data_root_dir, 'saved_caches') %>
142
+
143
+ # commitlog_sync may be either "periodic" or "batch."
144
+ # When in batch mode, Cassandra won't ack writes until the commit log
145
+ # has been fsynced to disk. It will wait up to
146
+ # commitlog_sync_batch_window_in_ms milliseconds for other writes, before
147
+ # performing the sync.
148
+ #
149
+ # commitlog_sync: batch
150
+ # commitlog_sync_batch_window_in_ms: 50
151
+ #
152
+ # the other option is "periodic" where writes may be acked immediately
153
+ # and the CommitLog is simply synced every commitlog_sync_period_in_ms
154
+ # milliseconds.
155
+ commitlog_sync: periodic
156
+ commitlog_sync_period_in_ms: 10000
157
+
158
+ # The size of the individual commitlog file segments. A commitlog
159
+ # segment may be archived, deleted, or recycled once all the data
160
+ # in it (potentally from each columnfamily in the system) has been
161
+ # flushed to sstables.
162
+ #
163
+ # The default size is 32, which is almost always fine, but if you are
164
+ # archiving commitlog segments (see commitlog_archiving.properties),
165
+ # then you probably want a finer granularity of archiving; 8 or 16 MB
166
+ # is reasonable.
167
+ commitlog_segment_size_in_mb: 32
168
+
169
+ # any class that implements the SeedProvider interface and has a
170
+ # constructor that takes a Map<String, String> of parameters will do.
171
+ seed_provider:
172
+ # Addresses of hosts that are deemed contact points.
173
+ # Cassandra nodes use this list of hosts to find each other and learn
174
+ # the topology of the ring. You must change this if you are running
175
+ # multiple nodes!
176
+ - class_name: org.apache.cassandra.locator.SimpleSeedProvider
177
+ parameters:
178
+ # seeds is actually a comma-delimited list of addresses.
179
+ # Ex: "<ip1>,<ip2>,<ip3>"
180
+ - seeds: "127.0.0.1"
181
+
182
+ # emergency pressure valve: each time heap usage after a full (CMS)
183
+ # garbage collection is above this fraction of the max, Cassandra will
184
+ # flush the largest memtables.
185
+ #
186
+ # Set to 1.0 to disable. Setting this lower than
187
+ # CMSInitiatingOccupancyFraction is not likely to be useful.
188
+ #
189
+ # RELYING ON THIS AS YOUR PRIMARY TUNING MECHANISM WILL WORK POORLY:
190
+ # it is most effective under light to moderate load, or read-heavy
191
+ # workloads; under truly massive write load, it will often be too
192
+ # little, too late.
193
+ flush_largest_memtables_at: 0.75
194
+
195
+ # emergency pressure valve #2: the first time heap usage after a full
196
+ # (CMS) garbage collection is above this fraction of the max,
197
+ # Cassandra will reduce cache maximum _capacity_ to the given fraction
198
+ # of the current _size_. Should usually be set substantially above
199
+ # flush_largest_memtables_at, since that will have less long-term
200
+ # impact on the system.
201
+ #
202
+ # Set to 1.0 to disable. Setting this lower than
203
+ # CMSInitiatingOccupancyFraction is not likely to be useful.
204
+ reduce_cache_sizes_at: 0.85
205
+ reduce_cache_capacity_to: 0.6
206
+
207
+ # For workloads with more data than can fit in memory, Cassandra's
208
+ # bottleneck will be reads that need to fetch data from
209
+ # disk. "concurrent_reads" should be set to (16 * number_of_drives) in
210
+ # order to allow the operations to enqueue low enough in the stack
211
+ # that the OS and drives can reorder them.
212
+ #
213
+ # On the other hand, since writes are almost never IO bound, the ideal
214
+ # number of "concurrent_writes" is dependent on the number of cores in
215
+ # your system; (8 * number_of_cores) is a good rule of thumb.
216
+ concurrent_reads: 32
217
+ concurrent_writes: 32
218
+
219
+ # Total memory to use for memtables. Cassandra will flush the largest
220
+ # memtable when this much memory is used.
221
+ # If omitted, Cassandra will set it to 1/3 of the heap.
222
+ # memtable_total_space_in_mb: 2048
223
+
224
+ # Total space to use for commitlogs. Since commitlog segments are
225
+ # mmapped, and hence use up address space, the default size is 32
226
+ # on 32-bit JVMs, and 1024 on 64-bit JVMs.
227
+ #
228
+ # If space gets above this value (it will round up to the next nearest
229
+ # segment multiple), Cassandra will flush every dirty CF in the oldest
230
+ # segment and remove it. So a small total commitlog space will tend
231
+ # to cause more flush activity on less-active columnfamilies.
232
+ # commitlog_total_space_in_mb: 4096
233
+
234
+ # This sets the amount of memtable flush writer threads. These will
235
+ # be blocked by disk io, and each one will hold a memtable in memory
236
+ # while blocked. If you have a large heap and many data directories,
237
+ # you can increase this value for better flush performance.
238
+ # By default this will be set to the amount of data directories defined.
239
+ #memtable_flush_writers: 1
240
+
241
+ # the number of full memtables to allow pending flush, that is,
242
+ # waiting for a writer thread. At a minimum, this should be set to
243
+ # the maximum number of secondary indexes created on a single CF.
244
+ memtable_flush_queue_size: 4
245
+
246
+ # Whether to, when doing sequential writing, fsync() at intervals in
247
+ # order to force the operating system to flush the dirty
248
+ # buffers. Enable this to avoid sudden dirty buffer flushing from
249
+ # impacting read latencies. Almost always a good idea on SSD:s; not
250
+ # necessarily on platters.
251
+ trickle_fsync: false
252
+ trickle_fsync_interval_in_kb: 10240
253
+
254
+ # TCP port, for commands and data
255
+ storage_port: 7000
256
+
257
+ # SSL port, for encrypted communication. Unused unless enabled in
258
+ # encryption_options
259
+ ssl_storage_port: 7001
260
+
261
+ # Address to bind to and tell other Cassandra nodes to connect to. You
262
+ # _must_ change this if you want multiple nodes to be able to
263
+ # communicate!
264
+ #
265
+ # Leaving it blank leaves it up to InetAddress.getLocalHost(). This
266
+ # will always do the Right Thing *if* the node is properly configured
267
+ # (hostname, name resolution, etc), and the Right Thing is to use the
268
+ # address associated with the hostname (it might not be).
269
+ #
270
+ # Setting this to 0.0.0.0 is always wrong.
271
+ listen_address: localhost
272
+
273
+ # Address to broadcast to other Cassandra nodes
274
+ # Leaving this blank will set it to the same value as listen_address
275
+ # broadcast_address: 1.2.3.4
276
+
277
+ # The address to bind the Thrift RPC service to -- clients connect
278
+ # here. Unlike ListenAddress above, you *can* specify 0.0.0.0 here if
279
+ # you want Thrift to listen on all interfaces.
280
+ #
281
+ # Leaving this blank has the same effect it does for ListenAddress,
282
+ # (i.e. it will be based on the configured hostname of the node).
283
+ rpc_address: localhost
284
+ # port for Thrift to listen for clients on
285
+ rpc_port: 9160
286
+
287
+ # enable or disable keepalive on rpc connections
288
+ rpc_keepalive: true
289
+
290
+ # Cassandra provides three options for the RPC Server:
291
+ #
292
+ # sync -> One connection per thread in the rpc pool (see below).
293
+ # For a very large number of clients, memory will be your limiting
294
+ # factor; on a 64 bit JVM, 128KB is the minimum stack size per thread.
295
+ # Connection pooling is very, very strongly recommended.
296
+ #
297
+ # async -> Nonblocking server implementation with one thread to serve
298
+ # rpc connections. This is not recommended for high throughput use
299
+ # cases. Async has been tested to be about 50% slower than sync
300
+ # or hsha and is deprecated: it will be removed in the next major release.
301
+ #
302
+ # hsha -> Stands for "half synchronous, half asynchronous." The rpc thread pool
303
+ # (see below) is used to manage requests, but the threads are multiplexed
304
+ # across the different clients.
305
+ #
306
+ # The default is sync because on Windows hsha is about 30% slower. On Linux,
307
+ # sync/hsha performance is about the same, with hsha of course using less memory.
308
+ rpc_server_type: sync
309
+
310
+ # Uncomment rpc_min|max|thread to set request pool size.
311
+ # You would primarily set max for the sync server to safeguard against
312
+ # misbehaved clients; if you do hit the max, Cassandra will block until one
313
+ # disconnects before accepting more. The defaults for sync are min of 16 and max
314
+ # unlimited.
315
+ #
316
+ # For the Hsha server, the min and max both default to quadruple the number of
317
+ # CPU cores.
318
+ #
319
+ # This configuration is ignored by the async server.
320
+ #
321
+ # rpc_min_threads: 16
322
+ # rpc_max_threads: 2048
323
+
324
+ # uncomment to set socket buffer sizes on rpc connections
325
+ # rpc_send_buff_size_in_bytes:
326
+ # rpc_recv_buff_size_in_bytes:
327
+
328
+ # Frame size for thrift (maximum field length).
329
+ # 0 disables TFramedTransport in favor of TSocket. This option
330
+ # is deprecated; we strongly recommend using Framed mode.
331
+ thrift_framed_transport_size_in_mb: 15
332
+
333
+ # The max length of a thrift message, including all fields and
334
+ # internal thrift overhead.
335
+ thrift_max_message_length_in_mb: 16
336
+
337
+ # Set to true to have Cassandra create a hard link to each sstable
338
+ # flushed or streamed locally in a backups/ subdirectory of the
339
+ # Keyspace data. Removing these links is the operator's
340
+ # responsibility.
341
+ incremental_backups: false
342
+
343
+ # Whether or not to take a snapshot before each compaction. Be
344
+ # careful using this option, since Cassandra won't clean up the
345
+ # snapshots for you. Mostly useful if you're paranoid when there
346
+ # is a data format change.
347
+ snapshot_before_compaction: false
348
+
349
+ # Whether or not a snapshot is taken of the data before keyspace truncation
350
+ # or dropping of column families. The STRONGLY advised default of true
351
+ # should be used to provide data safety. If you set this flag to false, you will
352
+ # lose data on truncation or drop.
353
+ auto_snapshot: true
354
+
355
+ # Add column indexes to a row after its contents reach this size.
356
+ # Increase if your column values are large, or if you have a very large
357
+ # number of columns. The competing causes are, Cassandra has to
358
+ # deserialize this much of the row to read a single column, so you want
359
+ # it to be small - at least if you do many partial-row reads - but all
360
+ # the index data is read for each access, so you don't want to generate
361
+ # that wastefully either.
362
+ column_index_size_in_kb: 64
363
+
364
+ # Size limit for rows being compacted in memory. Larger rows will spill
365
+ # over to disk and use a slower two-pass compaction process. A message
366
+ # will be logged specifying the row key.
367
+ in_memory_compaction_limit_in_mb: 64
368
+
369
+ # Number of simultaneous compactions to allow, NOT including
370
+ # validation "compactions" for anti-entropy repair. Simultaneous
371
+ # compactions can help preserve read performance in a mixed read/write
372
+ # workload, by mitigating the tendency of small sstables to accumulate
373
+ # during a single long running compactions. The default is usually
374
+ # fine and if you experience problems with compaction running too
375
+ # slowly or too fast, you should look at
376
+ # compaction_throughput_mb_per_sec first.
377
+ #
378
+ # This setting has no effect on LeveledCompactionStrategy.
379
+ #
380
+ # concurrent_compactors defaults to the number of cores.
381
+ # Uncomment to make compaction mono-threaded, the pre-0.8 default.
382
+ #concurrent_compactors: 1
383
+
384
+ # Multi-threaded compaction. When enabled, each compaction will use
385
+ # up to one thread per core, plus one thread per sstable being merged.
386
+ # This is usually only useful for SSD-based hardware: otherwise,
387
+ # your concern is usually to get compaction to do LESS i/o (see:
388
+ # compaction_throughput_mb_per_sec), not more.
389
+ multithreaded_compaction: false
390
+
391
+ # Throttles compaction to the given total throughput across the entire
392
+ # system. The faster you insert data, the faster you need to compact in
393
+ # order to keep the sstable count down, but in general, setting this to
394
+ # 16 to 32 times the rate you are inserting data is more than sufficient.
395
+ # Setting this to 0 disables throttling. Note that this account for all types
396
+ # of compaction, including validation compaction.
397
+ compaction_throughput_mb_per_sec: 16
398
+
399
+ # Track cached row keys during compaction, and re-cache their new
400
+ # positions in the compacted sstable. Disable if you use really large
401
+ # key caches.
402
+ compaction_preheat_key_cache: true
403
+
404
+ # Throttles all outbound streaming file transfers on this node to the
405
+ # given total throughput in Mbps. This is necessary because Cassandra does
406
+ # mostly sequential IO when streaming data during bootstrap or repair, which
407
+ # can lead to saturating the network connection and degrading rpc performance.
408
+ # When unset, the default is 400 Mbps or 50 MB/s.
409
+ # stream_throughput_outbound_megabits_per_sec: 400
410
+
411
+ # Time to wait for a reply from other nodes before failing the command
412
+ rpc_timeout_in_ms: 10000
413
+
414
+ # Enable socket timeout for streaming operation.
415
+ # When a timeout occurs during streaming, streaming is retried from the start
416
+ # of the current file. This *can* involve re-streaming an important amount of
417
+ # data, so you should avoid setting the value too low.
418
+ # Default value is 0, which never timeout streams.
419
+ # streaming_socket_timeout_in_ms: 0
420
+
421
+ # phi value that must be reached for a host to be marked down.
422
+ # most users should never need to adjust this.
423
+ # phi_convict_threshold: 8
424
+
425
+ # endpoint_snitch -- Set this to a class that implements
426
+ # IEndpointSnitch. The snitch has two functions:
427
+ # - it teaches Cassandra enough about your network topology to route
428
+ # requests efficiently
429
+ # - it allows Cassandra to spread replicas around your cluster to avoid
430
+ # correlated failures. It does this by grouping machines into
431
+ # "datacenters" and "racks." Cassandra will do its best not to have
432
+ # more than one replica on the same "rack" (which may not actually
433
+ # be a physical location)
434
+ #
435
+ # IF YOU CHANGE THE SNITCH AFTER DATA IS INSERTED INTO THE CLUSTER,
436
+ # YOU MUST RUN A FULL REPAIR, SINCE THE SNITCH AFFECTS WHERE REPLICAS
437
+ # ARE PLACED.
438
+ #
439
+ # Out of the box, Cassandra provides
440
+ # - SimpleSnitch:
441
+ # Treats Strategy order as proximity. This improves cache locality
442
+ # when disabling read repair, which can further improve throughput.
443
+ # Only appropriate for single-datacenter deployments.
444
+ # - PropertyFileSnitch:
445
+ # Proximity is determined by rack and data center, which are
446
+ # explicitly configured in cassandra-topology.properties.
447
+ # - GossipingPropertyFileSnitch
448
+ # The rack and datacenter for the local node are defined in
449
+ # cassandra-rackdc.properties and propagated to other nodes via gossip. If
450
+ # cassandra-topology.properties exists, it is used as a fallback, allowing
451
+ # migration from the PropertyFileSnitch.
452
+ # - RackInferringSnitch:
453
+ # Proximity is determined by rack and data center, which are
454
+ # assumed to correspond to the 3rd and 2nd octet of each node's
455
+ # IP address, respectively. Unless this happens to match your
456
+ # deployment conventions (as it did Facebook's), this is best used
457
+ # as an example of writing a custom Snitch class.
458
+ # - Ec2Snitch:
459
+ # Appropriate for EC2 deployments in a single Region. Loads Region
460
+ # and Availability Zone information from the EC2 API. The Region is
461
+ # treated as the Datacenter, and the Availability Zone as the rack.
462
+ # Only private IPs are used, so this will not work across multiple
463
+ # Regions.
464
+ # - Ec2MultiRegionSnitch:
465
+ # Uses public IPs as broadcast_address to allow cross-region
466
+ # connectivity. (Thus, you should set seed addresses to the public
467
+ # IP as well.) You will need to open the storage_port or
468
+ # ssl_storage_port on the public IP firewall. (For intra-Region
469
+ # traffic, Cassandra will switch to the private IP after
470
+ # establishing a connection.)
471
+ #
472
+ # You can use a custom Snitch by setting this to the full class name
473
+ # of the snitch, which will be assumed to be on your classpath.
474
+ endpoint_snitch: SimpleSnitch
475
+
476
+ # controls how often to perform the more expensive part of host score
477
+ # calculation
478
+ dynamic_snitch_update_interval_in_ms: 100
479
+ # controls how often to reset all host scores, allowing a bad host to
480
+ # possibly recover
481
+ dynamic_snitch_reset_interval_in_ms: 600000
482
+ # if set greater than zero and read_repair_chance is < 1.0, this will allow
483
+ # 'pinning' of replicas to hosts in order to increase cache capacity.
484
+ # The badness threshold will control how much worse the pinned host has to be
485
+ # before the dynamic snitch will prefer other replicas over it. This is
486
+ # expressed as a double which represents a percentage. Thus, a value of
487
+ # 0.2 means Cassandra would continue to prefer the static snitch values
488
+ # until the pinned host was 20% worse than the fastest.
489
+ dynamic_snitch_badness_threshold: 0.1
490
+
491
+ # request_scheduler -- Set this to a class that implements
492
+ # RequestScheduler, which will schedule incoming client requests
493
+ # according to the specific policy. This is useful for multi-tenancy
494
+ # with a single Cassandra cluster.
495
+ # NOTE: This is specifically for requests from the client and does
496
+ # not affect inter node communication.
497
+ # org.apache.cassandra.scheduler.NoScheduler - No scheduling takes place
498
+ # org.apache.cassandra.scheduler.RoundRobinScheduler - Round robin of
499
+ # client requests to a node with a separate queue for each
500
+ # request_scheduler_id. The scheduler is further customized by
501
+ # request_scheduler_options as described below.
502
+ request_scheduler: org.apache.cassandra.scheduler.NoScheduler
503
+
504
+ # Scheduler Options vary based on the type of scheduler
505
+ # NoScheduler - Has no options
506
+ # RoundRobin
507
+ # - throttle_limit -- The throttle_limit is the number of in-flight
508
+ # requests per client. Requests beyond
509
+ # that limit are queued up until
510
+ # running requests can complete.
511
+ # The value of 80 here is twice the number of
512
+ # concurrent_reads + concurrent_writes.
513
+ # - default_weight -- default_weight is optional and allows for
514
+ # overriding the default which is 1.
515
+ # - weights -- Weights are optional and will default to 1 or the
516
+ # overridden default_weight. The weight translates into how
517
+ # many requests are handled during each turn of the
518
+ # RoundRobin, based on the scheduler id.
519
+ #
520
+ # request_scheduler_options:
521
+ # throttle_limit: 80
522
+ # default_weight: 5
523
+ # weights:
524
+ # Keyspace1: 1
525
+ # Keyspace2: 5
526
+
527
+ # request_scheduler_id -- An identifer based on which to perform
528
+ # the request scheduling. Currently the only valid option is keyspace.
529
+ # request_scheduler_id: keyspace
530
+
531
+ # index_interval controls the sampling of entries from the primrary
532
+ # row index in terms of space versus time. The larger the interval,
533
+ # the smaller and less effective the sampling will be. In technicial
534
+ # terms, the interval coresponds to the number of index entries that
535
+ # are skipped between taking each sample. All the sampled entries
536
+ # must fit in memory. Generally, a value between 128 and 512 here
537
+ # coupled with a large key cache size on CFs results in the best trade
538
+ # offs. This value is not often changed, however if you have many
539
+ # very small rows (many to an OS page), then increasing this will
540
+ # often lower memory usage without a impact on performance.
541
+ index_interval: 128
542
+
543
+ # Enable or disable inter-node encryption
544
+ # Default settings are TLS v1, RSA 1024-bit keys (it is imperative that
545
+ # users generate their own keys) TLS_RSA_WITH_AES_128_CBC_SHA as the cipher
546
+ # suite for authentication, key exchange and encryption of the actual data transfers.
547
+ # NOTE: No custom encryption options are enabled at the moment
548
+ # The available internode options are : all, none, dc, rack
549
+ #
550
+ # If set to dc cassandra will encrypt the traffic between the DCs
551
+ # If set to rack cassandra will encrypt the traffic between the racks
552
+ #
553
+ # The passwords used in these options must match the passwords used when generating
554
+ # the keystore and truststore. For instructions on generating these files, see:
555
+ # http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore
556
+ #
557
+ encryption_options:
558
+ internode_encryption: none
559
+ keystore: conf/.keystore
560
+ keystore_password: cassandra
561
+ truststore: conf/.truststore
562
+ truststore_password: cassandra
563
+ # More advanced defaults below:
564
+ # protocol: TLS
565
+ # algorithm: SunX509
566
+ # store_type: JKS
567
+ # cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA]