Merge "Fix retrieving interfaces on Network page"
This commit is contained in:
commit
363ea9b4cf
@ -92,8 +92,8 @@
|
||||
|
||||
<h4>Autofill Hostname</h4>
|
||||
<select id="hostname-rule" class="input-large">
|
||||
<option value="">Please select a pattern</option>
|
||||
<option value="host" selected="selected">Host</option>
|
||||
<option value="" selected="selected">Please select a pattern</option>
|
||||
<option value="host">Host</option>
|
||||
<option value="switch_ip">Switch IP</option>
|
||||
</select>
|
||||
|
||||
|
@ -549,6 +549,16 @@ angular.module('compass.wizard', [
|
||||
|
||||
dataService.getClusterHosts(cluster.id).success(function(data) {
|
||||
$scope.servers = data;
|
||||
|
||||
// Assume all hosts in the same cluster have same interface settings
|
||||
if($scope.servers[0].networks) {
|
||||
if(Object.keys($scope.servers[0].networks).length != 0) {
|
||||
$scope.interfaces = $scope.servers[0].networks;
|
||||
wizardFactory.setInterfaces($scope.interfaces);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$scope.tableParams = new ngTableParams({
|
||||
page: 1, // show first page
|
||||
count: $scope.servers.length + 1 // count per page
|
||||
|
Loading…
x
Reference in New Issue
Block a user