-
Notifications
You must be signed in to change notification settings - Fork 416
feat(tofs): First implementation #238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{%- macro files_switch(source_files, | ||
lookup=None, | ||
default_files_switch=['id', 'os_family'], | ||
indent_width=6, | ||
v1_path_prefix='') %} | ||
{#- | ||
Returns a valid value for the "source" parameter of a "file.managed" | ||
state function. This makes easier the usage of the Template Override and | ||
Files Switch (TOFS) pattern. | ||
|
||
Params: | ||
* source_files: ordered list of files to look for | ||
* lookup: key under '<tplroot>:tofs:source_files' to override | ||
list of source files | ||
* default_files_switch: if there's no config (e.g. pillar) | ||
'<tplroot>:tofs:files_switch' this is the ordered list of grains to | ||
use as selector switch of the directories under | ||
"<path_prefix>/files" | ||
* indent_witdh: indentation of the result value to conform to YAML | ||
* v1_path_prefix: (deprecated) only used for injecting a path prefix into | ||
the source, to support older TOFS configs | ||
|
||
Example (based on a `tplroot` of `xxx`): | ||
|
||
If we have a state: | ||
|
||
Deploy configuration: | ||
file.managed: | ||
- name: /etc/yyy/zzz.conf | ||
- source: {{ files_switch(['/etc/yyy/zzz.conf', '/etc/yyy/zzz.conf.jinja'], | ||
lookup='Deploy configuration' | ||
) }} | ||
- template: jinja | ||
|
||
In a minion with id=theminion and os_family=RedHat, it's going to be | ||
rendered as: | ||
|
||
Deploy configuration: | ||
file.managed: | ||
- name: /etc/yyy/zzz.conf | ||
- source: | ||
- salt://xxx/files/theminion/etc/yyy/zzz.conf | ||
- salt://xxx/files/theminion/etc/yyy/zzz.conf.jinja | ||
- salt://xxx/files/RedHat/etc/yyy/zzz.conf | ||
- salt://xxx/files/RedHat/etc/yyy/zzz.conf.jinja | ||
- salt://xxx/files/default/etc/yyy/zzz.conf | ||
- salt://xxx/files/default/etc/yyy/zzz.conf.jinja | ||
- template: jinja | ||
#} | ||
{#- Get the `tplroot` from `tpldir` #} | ||
{%- set tplroot = tpldir.split('/')[0] %} | ||
{%- set path_prefix = salt['config.get'](tplroot ~ ':tofs:path_prefix', tplroot) %} | ||
{%- set files_dir = salt['config.get'](tplroot ~ ':tofs:dirs:files', 'files') %} | ||
{%- set files_switch_list = salt['config.get']( | ||
tplroot ~ ':tofs:files_switch', | ||
default_files_switch | ||
) %} | ||
{#- Lookup source_files (v2), files (v1), or fallback to source_files parameter #} | ||
{%- set src_files = salt['config.get']( | ||
tplroot ~ ':tofs:source_files:' ~ lookup, | ||
salt['config.get']( | ||
tplroot ~ ':tofs:files:' ~ lookup, | ||
source_files | ||
) | ||
) %} | ||
{#- Only add to [''] when supporting older TOFS implementations #} | ||
{%- set path_prefix_exts = [''] %} | ||
{%- if v1_path_prefix != '' %} | ||
{%- do path_prefix_exts.append(v1_path_prefix) %} | ||
{%- endif %} | ||
{%- for path_prefix_ext in path_prefix_exts %} | ||
{%- set path_prefix_inc_ext = path_prefix ~ path_prefix_ext %} | ||
{#- For older TOFS implementation, use `files_switch` from the config #} | ||
{#- Use the default, new method otherwise #} | ||
{%- set fsl = salt['config.get']( | ||
tplroot ~ path_prefix_ext|replace('/', ':') ~ ':files_switch', | ||
files_switch_list | ||
) %} | ||
{#- Append an empty value to evaluate as `default` in the loop below #} | ||
{%- if '' not in fsl %} | ||
{%- do fsl.append('') %} | ||
{%- endif %} | ||
{%- for fs in fsl %} | ||
{%- for src_file in src_files %} | ||
{%- if fs %} | ||
{%- set fs_dir = salt['config.get'](fs, fs) %} | ||
{%- else %} | ||
{%- set fs_dir = salt['config.get'](tplroot ~ ':tofs:dirs:default', 'default') %} | ||
{%- endif %} | ||
{%- set url = [ | ||
'- salt:/', | ||
path_prefix_inc_ext.strip('/'), | ||
files_dir.strip('/'), | ||
fs_dir.strip('/'), | ||
src_file.strip('/'), | ||
] | select | join('/') %} | ||
{{ url | indent(indent_width, true) }} | ||
{%- endfor %} | ||
{%- endfor %} | ||
{%- endfor %} | ||
{%- endmacro %} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,11 @@ | |
# | ||
# Manages the configuration of virtual host files. | ||
|
||
{% from 'nginx/map.jinja' import nginx, sls_block with context %} | ||
{#- Get the `tplroot` from `tpldir` #} | ||
{%- set tplroot = tpldir.split('/')[0] %} | ||
{%- from tplroot ~ '/map.jinja' import nginx, sls_block with context %} | ||
{%- from tplroot ~ '/libtofs.jinja' import files_switch with context %} | ||
|
||
{% set server_states = [] %} | ||
|
||
# Simple path concatenation. | ||
|
@@ -100,17 +104,19 @@ nginx_server_available_dir: | |
file.absent: | ||
- name: {{ server_curpath(server) }} | ||
{% else %} | ||
{% if settings.config != None and settings.enabled == True %} | ||
{% if 'source_path' in settings.config %} | ||
{% set source_path = settings.config.source_path %} | ||
{% else %} | ||
{% set source_path = 'salt://nginx/files/server.conf' %} | ||
{% endif %} | ||
{% if settings.enabled == True %} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I haven't looked into this but is there a reason you removed the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed this to be able to not specify a config object so that flat files can be retrieved by TOFS without this param set empty |
||
{{ conf_state_id }}: | ||
file.managed: | ||
{{ sls_block(nginx.servers.managed_opts) }} | ||
- name: {{ server_curpath(server) }} | ||
- source: {{ source_path }} | ||
- source: | ||
{%- if 'source_path' in settings.config %} | ||
- {{ settings.config.source_path }} | ||
{%- endif %} | ||
{{ files_switch([server, 'server.conf'], | ||
'server_conf_file_managed' | ||
) | ||
}} | ||
- makedirs: True | ||
- template: jinja | ||
- require_in: | ||
|
@@ -138,7 +144,7 @@ nginx_server_available_dir: | |
{% else %} | ||
{{ manage_status(server, settings.enabled, False) }} | ||
{% endif %} | ||
{% if settings.config != None and settings.enabled == True %} | ||
{% if settings.enabled == True %} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I haven't looked into this but is there a reason you removed the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed this to be able to not specify a config object so that flat files can be retrieved by TOFS without this param set empty |
||
- require: | ||
- file: {{ conf_state_id }} | ||
{% endif %} | ||
|
Uh oh!
There was an error while loading. Please reload this page.