Commit 7bb93a52537ef6b2120b29174669e7cf6b36d1c1

Authored by Antonio Terceiro
1 parent ec133247

manage monitoring environment

monitoring/.ssh_config 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +Host status.softwarepublico.gov.br
  2 + HostName 189.9.151.77
  3 + ProxyCommand ssh lappis.unb.br nc %h %p
... ...
monitoring/Rakefile 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +require 'chake'
  2 +
  3 +$nodes.each do |node|
  4 + node.data['peers'] = YAML.load_file('ips.yaml')
  5 +end
... ...
monitoring/cookbooks 0 → 120000
... ... @@ -0,0 +1 @@
  1 +../cookbooks
0 2 \ No newline at end of file
... ...
monitoring/ips.yaml 0 → 120000
... ... @@ -0,0 +1 @@
  1 +../config/prod/ips.yaml
0 2 \ No newline at end of file
... ...
monitoring/nodes.yaml 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +status.softwarepublico.gov.br:
  2 + run_list:
  3 + - recipe[basics]
  4 + - role[monitoring_server]
... ...
monitoring/roles 0 → 120000
... ... @@ -0,0 +1 @@
  1 +../roles
0 2 \ No newline at end of file
... ...