blob: 17f383d38aabdb4eee08a8b6c0620752dbf2a7e0 [file] [log] [blame]
Vnaumov248e34e2017-10-06 14:56:07 +03001---
2summary: >
OlgaGusarenko84e18432017-10-19 12:53:34 +03003 Added the ability to define a custom path to the NGINX proxy service
4 endpoints for DevOps Portal
Vnaumov248e34e2017-10-06 14:56:07 +03005
6features:
7 - |
OlgaGusarenko84e18432017-10-19 12:53:34 +03008 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.
Vnaumov248e34e2017-10-06 14:56:07 +030012
OlgaGusarenko84e18432017-10-19 12:53:34 +030013 Configuration example:
14
Vnaumov248e34e2017-10-06 14:56:07 +030015 .. code-block:: yaml
Vnaumov248e34e2017-10-06 14:56:07 +030016
OlgaGusarenko84e18432017-10-19 12:53:34 +030017 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}
Vnaumov248e34e2017-10-06 14:56:07 +030032
OlgaGusarenko84e18432017-10-19 12:53:34 +030033 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