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 |
Should this logic also include node[:instance_role] == 'solo'
, to also function for a small staging environment?
Anyone here have any luck with this recipe?
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:
check process redis-<%= @profile %>
with pidfile <%= @pidfile %>
start program = "/usr/sbin/redis-server <%= @configfile %>"
stop program = "/usr/bin/redis-cli -p <%= @port %> shutdown"
group redis-util
The problem was that start program was looking at /usr/bin/ instead of /usr/sbin/.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am having the same issue using the same recipe. Were you able to figure it out? The recipe matches the api-keys recipe that works fine.