aboutsummaryrefslogtreecommitdiffstats
path: root/templates/ui/tripleo_ui_config.js.erb
blob: 613042b3915611178a5caf30be3df08e8b586089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
window.tripleOUiConfig = {
  // Service URLs (defaults to UI host)
  //
  // A valid Keystone service URL is required. The other endpoints
  // will then be obtained automatically from the Keystone catalog.
  //
  'keystone': '<%= @endpoint_config_keystone %>',
  'heat': '<%= @endpoint_config_heat %>',
  'ironic': '<%= @endpoint_config_ironic %>',
  'ironic-inspector': '<%= @endpoint_config_ironic_inspector %>',
  'mistral': '<%= @endpoint_config_mistral %>',
  'swift': '<%= @endpoint_config_swift %>',
  'zaqar-websocket': '<%= @endpoint_config_zaqar %>',

  // Default websocket queue name
  'zaqar_default_queue': '<%= @zaqar_default_queue %>',

  // Languages
  //
  // By default, all available languages are enabled.  Use this setting to
  // disable certain languages.
  //
  'excludedLanguages': <%= @excluded_languages.to_json %>,


  // Logging
  // 'loggers': ['console']
};