Skip to content

Commit

Permalink
Closes-Bug: #1681637
Browse files Browse the repository at this point in the history
Correcting the IP addresses in UI config file

Change-Id: I40375fa61232c794bc9695622de1fc895ce42a57
  • Loading branch information
biswajit-mandal committed Apr 17, 2017
1 parent 2bec80e commit bf35982
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions playbooks/roles/contrail/webui/templates/config.gobal.js.j2
Expand Up @@ -134,15 +134,15 @@ config.networkManager.strictSSL = false;
config.networkManager.ca = '';

config.imageManager = {};
config.imageManager.ip = ' 127.0.0.1';
config.imageManager.ip = '127.0.0.1';
config.imageManager.port = '9292';
config.imageManager.authProtocol = 'http';
config.imageManager.apiVersion = ['v1', 'v2'];
config.imageManager.strictSSL = false;
config.imageManager.ca = '';

config.computeManager = {};
config.computeManager.ip = ' 127.0.0.1';
config.computeManager.ip = '127.0.0.1';
config.computeManager.port = '8774';
config.computeManager.authProtocol = 'http';
config.computeManager.apiVersion = ['v1.1', 'v2'];
Expand All @@ -165,7 +165,7 @@ config.identityManager.strictSSL = false;
config.identityManager.ca = '';

config.storageManager = {};
config.storageManager.ip = ' 127.0.0.1';
config.storageManager.ip = '127.0.0.1';
config.storageManager.port = '8776';
config.storageManager.authProtocol = 'http';
config.storageManager.apiVersion = ['v1'];
Expand Down

0 comments on commit bf35982

Please sign in to comment.