Vnaumov | 248e34e | 2017-10-06 14:56:07 +0300 | [diff] [blame] | 1 | --- |
| 2 | summary: > |
OlgaGusarenko | 84e1843 | 2017-10-19 12:53:34 +0300 | [diff] [blame] | 3 | Added the ability to define a custom path to the NGINX proxy service |
| 4 | endpoints for DevOps Portal |
Vnaumov | 248e34e | 2017-10-06 14:56:07 +0300 | [diff] [blame] | 5 | |
| 6 | features: |
| 7 | - | |
OlgaGusarenko | 84e1843 | 2017-10-19 12:53:34 +0300 | [diff] [blame] | 8 | Added the ability to define a custom path to the NGINX proxy service |
| 9 | endpoints for the DevOps Portal to auto-load a dedicated frame in the |
| 10 | web UI. To define the path, specify the ``custom_path`` parameter on |
| 11 | the system level metadata of your deployment. |
Vnaumov | 248e34e | 2017-10-06 14:56:07 +0300 | [diff] [blame] | 12 | |
OlgaGusarenko | 84e1843 | 2017-10-19 12:53:34 +0300 | [diff] [blame] | 13 | Configuration example: |
| 14 | |
Vnaumov | 248e34e | 2017-10-06 14:56:07 +0300 | [diff] [blame] | 15 | .. code-block:: yaml |
Vnaumov | 248e34e | 2017-10-06 14:56:07 +0300 | [diff] [blame] | 16 | |
OlgaGusarenko | 84e1843 | 2017-10-19 12:53:34 +0300 | [diff] [blame] | 17 | parameters: |
| 18 | _param: |
| 19 | grafana_prometheus_ssl: |
| 20 | enabled: false |
| 21 | devops_portal: |
| 22 | config: |
| 23 | service: |
| 24 | stacklight-prometheus: |
| 25 | configure_proxy: false |
| 26 | enabled: true |
| 27 | endpoint: |
| 28 | address: ${_param:grafana_prometheus_address} |
| 29 | custom_path: alerts |
| 30 | port: ${_param:grafana_prometheus_port} |
| 31 | https: ${_param:grafana_prometheus_ssl:enabled} |
Vnaumov | 248e34e | 2017-10-06 14:56:07 +0300 | [diff] [blame] | 32 | |
OlgaGusarenko | 84e1843 | 2017-10-19 12:53:34 +0300 | [diff] [blame] | 33 | If specified, the endpoint of the NGINX service will take the following |
| 34 | form: |
| 35 | |
| 36 | .. code-block:: yaml |
| 37 | |
| 38 | <ADDRESS>:<PORT>/<CUSTOM_PATH> |
| 39 | |
| 40 | .. fixes: https://mirantis.jira.com/browse/PROD-15068 |
| 41 | |