git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/dataminer-pool-manager@134331 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
9da808432d
commit
07f623e95b
|
@ -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***
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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'")
|
||||
|
|
|
@ -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***
|
||||
|
||||
|
|
Loading…
Reference in New Issue