projects
/
chef.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
imagery: fix volume mount
[chef.git]
/
roles
/
foundation.rb
diff --git
a/roles/foundation.rb
b/roles/foundation.rb
index 52c38f765ea09cb24324856678bf08b19a93f078..fb8024291d163f49403d30d253cf9041aca3957f 100644
(file)
--- a/
roles/foundation.rb
+++ b/
roles/foundation.rb
@@
-2,26
+2,27
@@
name "foundation"
description "Role applied to all OSMF servers"
default_attributes(
description "Role applied to all OSMF servers"
default_attributes(
- :apache => {
- :mpm => "prefork",
- :timeout => 60,
- :keepalive => false
- },
- :apt => {
- :sources => ["passenger"]
- },
:elasticsearch => {
:elasticsearch => {
+ :version => "7.x",
:cluster => {
:name => "foundation"
:cluster => {
:name => "foundation"
- },
- :script => {
- :disable_dynamic => false
}
},
:memcached => {
:memory_limit => 400,
:chunk_growth_factor => 1.05,
:min_item_size => 5
}
},
:memcached => {
:memory_limit => 400,
:chunk_growth_factor => 1.05,
:min_item_size => 5
+ },
+ :mysql => {
+ :settings => {
+ :mysqld => {
+ :innodb_buffer_pool_size => "512M",
+ :key_buffer_size => "64M",
+ :max_connections => "200",
+ :sort_buffer_size => "8M",
+ :tmp_table_size => "48M"
+ }
+ }
}
)
}
)
@@
-29,5
+30,7
@@
run_list(
"role[crm]",
"role[elasticsearch]",
"recipe[foundation::wiki]",
"role[crm]",
"role[elasticsearch]",
"recipe[foundation::wiki]",
- "recipe[foundation::board]"
+ "recipe[foundation::board]",
+ "recipe[foundation::dwg]",
+ "recipe[foundation::mwg]"
)
)