Add configuration for the Nova proxy endpoint
Change-Id: I6128f8e8a439880aa40f9b3a32e47563ad90cdb6 Partial-Bug: #1755560 Depends-On: I3701c34841b84c2272dcc24d982fc622ff6139b6
This commit is contained in:
parent
ebde918b0f
commit
c6db8d0cd2
@ -71,10 +71,18 @@
|
|||||||
# The mistral proxy endpoint url
|
# The mistral proxy endpoint url
|
||||||
# Defaults to undef
|
# Defaults to undef
|
||||||
#
|
#
|
||||||
|
# [*endpoint_proxy_nova*]
|
||||||
|
# The nova proxy endpoint url
|
||||||
|
# Defaults to undef
|
||||||
|
#
|
||||||
# [*endpoint_config_mistral*]
|
# [*endpoint_config_mistral*]
|
||||||
# The mistral config endpoint url
|
# The mistral config endpoint url
|
||||||
# Defaults to undef
|
# Defaults to undef
|
||||||
#
|
#
|
||||||
|
# [*endpoint_config_nova*]
|
||||||
|
# The nova config endpoint url
|
||||||
|
# Defaults to undef
|
||||||
|
#
|
||||||
# [*endpoint_proxy_swift*]
|
# [*endpoint_proxy_swift*]
|
||||||
# The swift proxy endpoint url
|
# The swift proxy endpoint url
|
||||||
# Defaults to undef
|
# Defaults to undef
|
||||||
@ -112,6 +120,7 @@ class tripleo::ui (
|
|||||||
$endpoint_proxy_ironic = undef,
|
$endpoint_proxy_ironic = undef,
|
||||||
$endpoint_proxy_ironic_inspector = undef,
|
$endpoint_proxy_ironic_inspector = undef,
|
||||||
$endpoint_proxy_mistral = undef,
|
$endpoint_proxy_mistral = undef,
|
||||||
|
$endpoint_proxy_nova = undef,
|
||||||
$endpoint_proxy_swift = undef,
|
$endpoint_proxy_swift = undef,
|
||||||
$endpoint_config_zaqar = undef,
|
$endpoint_config_zaqar = undef,
|
||||||
$endpoint_config_keystone = undef,
|
$endpoint_config_keystone = undef,
|
||||||
@ -119,6 +128,7 @@ class tripleo::ui (
|
|||||||
$endpoint_config_ironic = undef,
|
$endpoint_config_ironic = undef,
|
||||||
$endpoint_config_ironic_inspector = undef,
|
$endpoint_config_ironic_inspector = undef,
|
||||||
$endpoint_config_mistral = undef,
|
$endpoint_config_mistral = undef,
|
||||||
|
$endpoint_config_nova = undef,
|
||||||
$endpoint_config_swift = undef,
|
$endpoint_config_swift = undef,
|
||||||
$enabled_loggers = ['console', 'zaqar'],
|
$enabled_loggers = ['console', 'zaqar'],
|
||||||
|
|
||||||
@ -169,6 +179,11 @@ class tripleo::ui (
|
|||||||
'url' => $endpoint_proxy_mistral,
|
'url' => $endpoint_proxy_mistral,
|
||||||
'reverse_urls' => $endpoint_proxy_mistral
|
'reverse_urls' => $endpoint_proxy_mistral
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'path' => '/nova',
|
||||||
|
'url' => $endpoint_proxy_nova,
|
||||||
|
'reverse_urls' => $endpoint_proxy_nova
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'path' => '/swift',
|
'path' => '/swift',
|
||||||
'url' => $endpoint_proxy_swift,
|
'url' => $endpoint_proxy_swift,
|
||||||
|
5
releasenotes/notes/nova-endpoint-a957a840ee653307.yaml
Normal file
5
releasenotes/notes/nova-endpoint-a957a840ee653307.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
Added variables for endpoint_proxy_nova, endpoint_config_nova, and Apache
|
||||||
|
mod_proxy configuration to proxy nova service just like similar services
|
@ -9,6 +9,7 @@ window.tripleOUiConfig = {
|
|||||||
'ironic': '<%= @endpoint_config_ironic %>',
|
'ironic': '<%= @endpoint_config_ironic %>',
|
||||||
'ironic-inspector': '<%= @endpoint_config_ironic_inspector %>',
|
'ironic-inspector': '<%= @endpoint_config_ironic_inspector %>',
|
||||||
'mistral': '<%= @endpoint_config_mistral %>',
|
'mistral': '<%= @endpoint_config_mistral %>',
|
||||||
|
'nova': '<%= @endpoint_config_nova %>',
|
||||||
'swift': '<%= @endpoint_config_swift %>',
|
'swift': '<%= @endpoint_config_swift %>',
|
||||||
'zaqar-websocket': '<%= @endpoint_config_zaqar %>',
|
'zaqar-websocket': '<%= @endpoint_config_zaqar %>',
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user