-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new value ui.dashboardURLTemplates (#937)
* Add new value ui.dashboardURLTemplates This value is used to set Consul's `ui_config.dashboard_url_templates` config. I'm pulling it out as its own value rather than getting users to just use `server.extraConfig` because these template strings always use the characters `{{` and when used within `server.extraConfig`, users need to escape those characters. Before: ```yaml server: extraConfig: | { "ui_config": { "dashboard_url_templates": { "service": "http://grafana/service/{{ "{{" }}Service.Name}}" } } } ``` Now: ```yaml ui: dashboardURLTemplates: service: "http://grafana/service/{{Service.Name}}" ```
- Loading branch information
Showing
4 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters