Merge pull request #56 from juiceinc/master
add templated file for reactor configuration and update pillar.example.
This commit is contained in:
commit
69b2ee3812
@ -42,6 +42,9 @@ salt:
|
||||
- IAD
|
||||
- SYD
|
||||
- HKG
|
||||
reactor:
|
||||
- 'deploy':
|
||||
- /srv/salt/reactors/deploy.sls
|
||||
|
||||
salt_cloud_certs:
|
||||
aws:
|
||||
|
15
salt/files/master.d/reactor.conf
Normal file
15
salt/files/master.d/reactor.conf
Normal file
@ -0,0 +1,15 @@
|
||||
#
|
||||
# This file is managed by Salt! Do not edit by hand!
|
||||
#
|
||||
{%- set reactors = salt['pillar.get']('salt:reactor') -%}
|
||||
{%- if reactors %}
|
||||
reactor:
|
||||
{%- for reactor in reactors %}
|
||||
{%- for event_tag, reactor_files in reactor.items() %}
|
||||
- '{{ event_tag }}'
|
||||
{%- for reactor_file in reactor_files %}
|
||||
- {{ reactor_file }}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
{% endfor -%}
|
||||
{%- endif -%}
|
Loading…
Reference in New Issue
Block a user