changed all yml occurrences to yaml

This commit is contained in:
Jedrzej Nowak
2015-09-15 12:24:34 +02:00
parent 65fe388ab8
commit ecfb5b10e2
19 changed files with 39 additions and 39 deletions

View File

@@ -47,8 +47,8 @@ def deploy():
db.clear()
signals.Connections.clear()
node1 = vr.create('nodes', 'templates/nodes.yml', {})[0]
seed = vr.create('nodes', 'templates/seed_node.yml', {})[0]
node1 = vr.create('nodes', 'templates/nodes.yaml', {})[0]
seed = vr.create('nodes', 'templates/seed_node.yaml', {})[0]
ssh_key = vr.create('ssh_key1', 'resources/ssh_key', {
'keys_dir': '/vagrant/.ssh',

View File

@@ -41,7 +41,7 @@ def setup_resources():
signals.Connections.clear()
node1, node2 = vr.create('nodes', 'templates/nodes.yml', {})
node1, node2 = vr.create('nodes', 'templates/nodes.yaml', {})
# MARIADB
mariadb_service1 = vr.create('mariadb_service1', 'resources/mariadb_service', {

View File

@@ -14,7 +14,7 @@ signals.Connections.clear()
from solar import template
nodes = template.nodes_from('templates/riak_nodes.yml')
nodes = template.nodes_from('templates/riak_nodes.yaml')
riak_services = nodes.on_each(
'resources/riak_node',

View File

@@ -28,7 +28,7 @@ def setup_riak():
db.clear()
signals.Connections.clear()
nodes = vr.create('nodes', 'templates/riak_nodes.yml', {})
nodes = vr.create('nodes', 'templates/riak_nodes.yaml', {})
node1, node2, node3 = nodes
riak_services = []