From b5212fc2663b30f42c9e94232623192bc2adea6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Ole=C5=9B?= Date: Tue, 29 Sep 2015 15:04:38 +0200 Subject: [PATCH] Update Virtual Resource for riak cluster --- examples/riak/riak_cluster.yaml | 160 +++++++------------------------- 1 file changed, 36 insertions(+), 124 deletions(-) diff --git a/examples/riak/riak_cluster.yaml b/examples/riak/riak_cluster.yaml index 4fc93e91..98143d1f 100644 --- a/examples/riak/riak_cluster.yaml +++ b/examples/riak/riak_cluster.yaml @@ -1,139 +1,51 @@ -id: riak_node +id: riak_cluster resources: - - id: riak_service0 - from: resources/riak_node - location: {{nodes[0]}} + - id: riak_service1 + from: examples/riak/riak_service.yaml values: - riak_self_name: 'riak0' - riak_hostname: 'riak_server0.solar' - riak_name: 'riak0@riak_server0.solar' - ip: '{{nodes[0]}}::ip' + node: {{nodes[0]}} + index: 1 + join_to: '' -{% for i in range(1, idx|int) %} - - id: riak_service{{i}} - from: resources/riak_node - location: {{nodes[i]}} + - id: riak_service2 + from: examples/riak/riak_service.yaml values: - riak_self_name: 'riak{{i}}' - riak_hostname: 'riak_server{{i}}.solar' - riak_name: 'riak{{i}}@riak_server{{i}}.solar' - join_to: 'riak_service0::riak_name' - ip: '{{nodes[i]}}::ip' -{% endfor %} + node: {{nodes[1]}} + index: 2 + join_to: riak_service1 -{% for i in range(idx|int) %} - - id: hosts_file{{i}} - from: resources/hosts_file - location: {{nodes[i]}} + - id: riak_service3 + from: examples/riak/riak_service.yaml values: - hosts:name: - {% for j in range(idx|int) %} - - riak_service{{j}}::riak_hostname::NO_EVENTS - {% endfor %} - hosts:ip: - {% for j in range(idx|int) %} - - riak_service{{j}}::ip::NO_EVENTS - {% endfor %} -{% endfor %} + node: {{nodes[2]}} + index: 3 + join_to: riak_service1 - - id: haproxy_riak_config_http - from: resources/haproxy_service_config + - id: haproxy_riak_config + from: examples/riak/haproxy_riak_config.yaml values: - listen_port: 8098 - protocol: 'http' - name: 'riak_haproxy_http' - backends:server: - {% for j in range(idx|int) %} - - riak_service{{j}}::riak_hostname - {% endfor %} - backends:port: - {% for j in range(idx|int) %} - - riak_service{{j}}::riak_port_http - {% endfor %} + http_listen_port: 8098 + pb_listen_port: 8087 + riaks: ['riak_service1', 'riak_service2', 'riak_service3'] - - id: haproxy_riak_config_pb - from: resources/haproxy_service_config + - id: haproxy1 + from: templates/haproxy.yaml values: - listen_port: 8087 - protocol: 'tcp' - name: 'riak_haproxy_pb' - backends:server: - {% for j in range(idx|int) %} - - riak_service{{j}}::riak_hostname - {% endfor %} - backends:port: - {% for j in range(idx|int) %} - - riak_service{{j}}::riak_port_pb - {% endfor %} + node: {{nodes[0]}} + service_configs: ['haproxy_riak_config_pb', 'haproxy_riak_config_http'] + index: 1 -{% for i in range(idx|int) %} - - id: haproxy_config{{i}} - from: resources/haproxy_config - location: {{nodes[i]}} + - id: haproxy2 + from: templates/haproxy.yaml values: - config:protocol: - - haproxy_riak_config_http::protocol - - haproxy_riak_config_pb::protocol - config:listen_port: - - haproxy_riak_config_http::listen_port - - haproxy_riak_config_pb::listen_port - config:name: - - haproxy_riak_config_http::name - - haproxy_riak_config_pb::name - config:backends: - - haproxy_riak_config_http::backends - - haproxy_riak_config_pb::backends - ip: '{{nodes[i]}}::ip' -{% endfor %} + node: {{nodes[1]}} + service_configs: ['haproxy_riak_config_pb', 'haproxy_riak_config_http'] + index: 2 -{% for i in range(idx|int) %} - - id: haproxy_service{{i}} - location: {{nodes[i]}} - from: resources/haproxy_service + - id: haproxy3 + from: templates/haproxy.yaml values: - ip: '{{nodes[i]}}::ip' -{% endfor %} - - -events: -{% for i in range(idx|int) %} - - type: depends_on - parent_action: 'hosts_file{{i}}.run' - state: 'success' - depend_action: 'riak_service{{i}}.run' -{% endfor %} - -{% for i in range(1, idx|int) %} - - type: react_on - parent_action: 'riak_service{{i}}.run' - state: 'success' - depend_action: 'riak_service{{i}}.join' - - - type: react_on - parent_action: 'riak_service{{i}}.leave' - state: 'success' - depend_action: 'riak_service{{i}}.join' - - - type: react_on - parent_action: 'riak_service{{i}}.join' - state: 'success' - depend_action: 'riak_service0.commit' -{% endfor %} - -{% for i in range(1, idx|int) %} - - type: depends_on - parent_action: 'haproxy_service{{i}}.run' - state: 'success' - depend_action: 'haproxy_config{{i}}.run' - - - type: react_on - parent_action: 'haproxy_config{{i}}.run' - state: 'success' - depend_action: 'haproxy_service{{i}}.apply_config' - - - type: react_on - parent_action: 'haproxy_config{{i}}.update' - state: 'success' - depend_action: 'haproxy_service{{i}}.apply_config' -{% endfor %} + node: {{nodes[2]}} + service_configs: ['haproxy_riak_config_pb', 'haproxy_riak_config_http'] + index: 3