Sha256: e01d501c3b17875b37e7a5a846e6fc16bffbef0de3de6c3382e4bdaa13bb0d8e

Contents?: true

Size: 1.3 KB

Versions: 8

Compression:

Stored size: 1.3 KB

Contents

#
# This is just a large contrived example. :)
#

address :the_office, "1.2.3.4"



host_template "squidco_host" do
  interface :loopback, :lo0
  interface :internal, :bond0
  interface :external, :bond1

  accept_from_self
  allow_related_established
  icmp_protection allowed_from: :the_office
  sanity_check

  runs :ssh, on: :internal, port: 22022
  runs :ssh, on: :external, port: 22022, from: :the_office
  runs :monit, on: :external, from: :the_office
end

host_template "vps_host" do
  interface :external, :eth0

  runs :ssh, on: :external, port: 22022
  runs :worker_status, on: :external, from: :the_office
end



service :worker_status do
  port 1337
end



2.times do |i|
  squidco_host "loadbalancer_#{i}" do
    group :loadbalancers

    runs :http, on: :external
  end
end

5.times do |i|
  squidco_host "app_#{i}" do
    group :app_hosts

    runs :http, on: :internal, from: {:loadbalancers => :internal}
    runs :http, on: :external, from: :the_office
  end
end

3.times do |i|
  squidco_host "db_#{i}" do
    group :db_hosts

    runs :mongodb, on: :internal, from: {:app_hosts  => :internal}
  end
end

squidco_host "background_queue" do
  runs :redis, on: :external, from: [:the_office, {:background_workers => :external}]
end

5.times do |i|
  vps_host "worker_#{i}" do
    group :background_workers
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
asbestos-0.0.9 examples/10_kitchen_sink.rb
asbestos-0.0.8 examples/10_kitchen_sink.rb
asbestos-0.0.7 examples/10_kitchen_sink.rb
asbestos-0.0.6 examples/10_kitchen_sink.rb
asbestos-0.0.5 examples/10_kitchen_sink.rb
asbestos-0.0.4 examples/10_kitchen_sink.rb
asbestos-0.0.3 examples/10_kitchen_sink.rb
asbestos-0.0.1 examples/10_kitchen_sink.rb