Created
December 1, 2011 15:29
-
-
Save emachnic/1417571 to your computer and use it in GitHub Desktop.
Chef recipe to write redis.yml on Engine Yard Cloud
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ey-cloud-recipes/cookbooks/redis-yml/recipes/default.rb | |
if ['app_master', 'app'].include?(node[:instance_role]) | |
redis_instance = node['utility_instances'].find { |instance| instance['name'] == 'redis' } | |
if redis_instance | |
node[:applications].each do |app, data| | |
template "/data/#{app}/shared/config/redis.yml"do | |
source 'redis.yml.erb' | |
owner node[:owner_name] | |
group node[:owner_name] | |
mode 0655 | |
backup 0 | |
variables({ | |
:environment => node[:environment][:framework_env], | |
:hostname => redis_instance[:hostname] | |
}) | |
end | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ey-cloud-recipes/cookbooks/redis-yml/templates/default/redis.yml.erb | |
<%= @environment %>: | |
host: <%= @hostname %> | |
port: 6379 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
UPDATE AFTER SPEAKING W ENGINE YARD
@parhamr - you are correct. That was one problem. The second problem was an issue with the redis recipe:
Needed to change (this may be updated at this point) redis/templates/default/redis.monitrc.erb to:
The problem was that start program was looking at /usr/bin/ instead of /usr/sbin/.