blob: d4d42191e3a3d82707aa829cf16f2735bf5fb298 [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',
Ilya Kharin9954eaf2017-03-06 15:21:07 +040023'riverdelta',
24'rundeck',
Volodymyr Stoiko1f5c61d2017-05-19 13:07:14 +030025'securitymonkey',
Ilya Kharind5c1eef2017-06-10 00:15:06 +040026'stacklight-grafana',
27'stacklight-kibana',
Volodymyr Stoikoc53c56a2017-06-20 19:01:24 +030028'janitormonkey',
Ilya Kharin9954eaf2017-03-06 15:21:07 +040029] %}