This commit is contained in:
Paolo Fabriani 2016-11-17 16:16:35 +00:00
parent 9da808432d
commit 07f623e95b
4 changed files with 6 additions and 6 deletions

View File

@ -36,6 +36,8 @@ public class AnsibleSerializeHelper ***REMOVED***
for(String r:playbook.getRoles()) ***REMOVED***
out+=" - " + r+"\n";
***REMOVED***
out+=" vars:\n";
out+=" os_package_state: present\n";
out = out.trim();
serialize(out, playbookFile);
***REMOVED***

View File

@ -38,10 +38,10 @@ public class AlgorithmPackage ***REMOVED***
public Collection<Role> getRoles(TemplateManager tm) ***REMOVED***
Collection<Role> out = new Vector<>();
for(String mode:new String[]***REMOVED***"add", "remove", "update"***REMOVED***) ***REMOVED***
String roleName = "algorithm-"+this.getAlgorithm().getName()+("add".equals(mode) ? "" : "-"+mode);
String roleName = "gcube-algorithm-"+this.getAlgorithm().getName()+("add".equals(mode) ? "" : "-"+mode);
try ***REMOVED***
***REMOVED*** find template
Role template = tm.getRoleTemplate("algorithm-" + mode);
Role template = tm.getRoleTemplate("gcube-algorithm-" + mode);
***REMOVED***
if(template!=null) ***REMOVED***
Map<String, String> dictionary = this.getDictionary(this.getAlgorithm());

View File

@ -22,7 +22,7 @@ public class ISClient ***REMOVED***
* @param vreName
* @return
*/
public Collection<Host> listDataminersInVRE(String scope) ***REMOVED***
public Collection<Host> listDataminersInVRE() ***REMOVED***
boolean remote = false;
@ -34,8 +34,6 @@ public class ISClient ***REMOVED***
return out;
***REMOVED*** else ***REMOVED***
ScopeProvider.instance.set(scope);
SimpleQuery query = queryFor(ServiceEndpoint.class);
query.addCondition("$resource/Profile/Category/text() eq 'DataAnalysis'")

View File

@ -110,7 +110,7 @@ public class DataminerPoolManager ***REMOVED***
***REMOVED*** create the cluster (dataminers in the vre)
Cluster cluster = new Cluster();
for(Host h:new ISClient().listDataminersInVRE(vre)) ***REMOVED***
for(Host h:new ISClient().listDataminersInVRE()) ***REMOVED***
cluster.addHost(h);
***REMOVED***