OSDN Git Service

add .envrc
[metasearch/grid-chef-repo.git] / roles / pleiades-wf.rb
index fae1811..2db5cc4 100644 (file)
@@ -1,65 +1,90 @@
+#
+# Copyright 2013-2014, whitestar
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+$LOAD_PATH.push("#{File.dirname(__FILE__)}/_lib")
+#${chef-repo}/roles/_lib/grid.rb
+require 'grid'
+
 name 'pleiades-wf'
 description 'Pleiades workflow node'
 
 run_list(
+  'role[node_commons]',
   'role[grid-realm]',
   'role[ganglia-gmond]'
 )
 
 #env_run_lists "prod" => ["recipe[apache2]"], "staging" => ["recipe[apache2::staging]"], "_default" => []
 
+this_subcluster = Grid::CLUSTERS[:pleiades][:workflows]
+mcast_addr = this_subcluster[:mcast_addr]
+port = '8649'
+=begin
+# uni-cast
+udp_send_channels4ucast = []
+this_subcluster[:nodes].first(2).each {|host|
+  udp_send_channels4ucast.push(
+    {
+      'mcast_join' => '',
+      'host' => "#{host}.#{Grid::DOMAIN}",
+      'port' => port,
+      'ttl' => ''
+    }
+  )
+}
+=end
+
 default_attributes(
 )
 
-mcast_addr = '239.2.11.6'
-port = '8649'
-
 override_attributes(
   'ganglia' => {
     # gmond
     'cluster' => {
-      'name' => 'Workflow',
-      'owner' => 'grid.example.com'
+      'name' => this_subcluster[:alias],
+      'owner' => Grid::DOMAIN
     },
-    ## multi-cast
-    'udp_send_channels' => [
-      {
-        'mcast_join' => mcast_addr,
-        'host' => '',
-        'port' => port,
-        'ttl' => '1'
-      }
-    ],
-    'udp_recv_channels' => [
-      {
-        'mcast_join' => mcast_addr,
-        'port' => port,
-        'bind' => mcast_addr
-      }
-    ]
+    'static' => {
+      ## static multi-cast
+      'udp_send_channels' => [
+        {
+          'mcast_join' => mcast_addr,
+          'host' => '',
+          'port' => port,
+          'ttl' => '1'
+        }
+      ],
+      'udp_recv_channels' => [
+        {
+          'mcast_join' => mcast_addr,
+          'port' => port,
+          'bind' => mcast_addr
+        }
+      ]
 =begin
-    ## uni-cast
-    'udp_send_channels' => [
-      {
-        'mcast_join' => '',
-        'host' => "wf00.#{this.domain}",
-        'port' => port,
-        'ttl' => ''
-      },
-      {
-        'mcast_join' => '',
-        'host' => "wf01.#{this.domain}",
-        'port' => port,
-        'ttl' => ''
-      }
-    ],
-    'udp_recv_channels' => [
-      {
-        'mcast_join' => '',
-        'port' => port,
-        'bind' => ''
-      }
-    ]
+      ## static uni-cast
+      'udp_send_channels' => udp_send_channels4ucast,
+      'udp_recv_channels' => [
+        {
+          'mcast_join' => '',
+          'port' => port,
+          'bind' => ''
+        }
+      ]
 =end
+    }
   }
 )