blob: f6d588a6a303c5df285acced467caff0cd6d3a01 [file] [log] [blame]
Ilya Kharinfd293c42017-03-14 17:34:12 +04001{% set setup = salt['pillar.get']('devops_portal:setup') %}
2{% set config = salt['pillar.get']('devops_portal:config', default={
Ilya Kharinced98392017-03-16 13:41:18 +04003 "base_dir": "/srv/volumes/devops_portal",
4}, merge=True) %}
Ilya Kharin9954eaf2017-03-06 15:21:07 +04005
Ilya Kharine1cf8542017-03-17 18:37:09 +04006{% macro service_url(endpoint) -%}
Ilya Kharin9600ada2017-03-23 17:30:14 +04007{%- if endpoint.get('https', False) -%}https://{%- else -%}http://{%- endif -%}
Ilya Kharine1cf8542017-03-17 18:37:09 +04008{{ endpoint.address }}:{{ endpoint.port }}/
9{%- endmacro %}
10
Volodymyr Stoiko9c9a6fa2017-08-14 13:41:48 +030011{% macro service_url_dns(endpoint) -%}
12{%- if endpoint.get('https', False) -%}https://{%- else -%}http://{%- endif -%}
13${{ endpoint.address|replace("-", "_") }}:{{ endpoint.port }}
14{%- endmacro %}
15
16
Ilya Kharin9954eaf2017-03-06 15:21:07 +040017{% set services = [
18'artifactory',
19'elasticsearch',
20'gerrit',
Ilya Kharin9954eaf2017-03-06 15:21:07 +040021'jenkins',
Ilya Kharinc45f29c2017-04-05 11:31:04 +040022'pushkin',
Vnaumove9b08662017-12-06 13:33:07 +030023'hardware-correlation',
Ilya Kharin9954eaf2017-03-06 15:21:07 +040024'riverdelta',
25'rundeck',
Volodymyr Stoiko1f5c61d2017-05-19 13:07:14 +030026'securitymonkey',
Vnaumov1b792de2017-10-06 14:53:55 +030027'grafana',
Ilya Kharind5c1eef2017-06-10 00:15:06 +040028'stacklight-grafana',
29'stacklight-kibana',
Vnaumov1b792de2017-10-06 14:53:55 +030030'stacklight-prometheus',
Volodymyr Stoikoc53c56a2017-06-20 19:01:24 +030031'janitormonkey',
Ilya Kharin9954eaf2017-03-06 15:21:07 +040032] %}