blob: aff3f3a269f7b25f8558172851bbc68eff65e3a4 [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) -%}
7{%- if endpoint.get('ssl', {}).enabled|default(False) -%}https://{%- else -%}http://{%- endif -%}
8{{ endpoint.address }}:{{ endpoint.port }}/
9{%- endmacro %}
10
Ilya Kharin9954eaf2017-03-06 15:21:07 +040011{% set services = [
12'artifactory',
13'elasticsearch',
14'gerrit',
15'grafana',
16'jenkins',
17'kibana',
18'riverdelta',
19'rundeck',
20] %}