diff options
author | Georg Pfuetzenreuter | 2023-01-22 16:32:57 +0100 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-01-22 16:32:57 +0100 |
commit | 0efd688151a3f93cda226e6bc86490a6f3110ba1 (patch) | |
tree | fd6e949d47575afa19ea3a5763b7f2b4de3f698f | |
parent | 06a36e62ae783600a98115258ab4a3c6095888d1 (diff) | |
download | salt-0efd688151a3f93cda226e6bc86490a6f3110ba1.tar.gz salt-0efd688151a3f93cda226e6bc86490a6f3110ba1.tar.bz2 salt-0efd688151a3f93cda226e6bc86490a6f3110ba1.zip |
Use http.query instead of nbroles module
This is an attempt to remove the need for the custom nbroles module. If
it works out, the localhost reference should be replaced with a global
roles API endpoint.
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
-rwxr-xr-x | bin/nbroles_to_grains.sh | 2 | ||||
-rw-r--r-- | pillar/top.sls | 4 | ||||
-rw-r--r-- | salt/top.sls | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/bin/nbroles_to_grains.sh b/bin/nbroles_to_grains.sh index 4d955fb..ee4e726 100755 --- a/bin/nbroles_to_grains.sh +++ b/bin/nbroles_to_grains.sh @@ -1,4 +1,4 @@ #!/usr/bin/env sh # This rewrites top-files to fetch roles from grains instead of our custom roles API. Useful for testing outside of the LibertaCasa infrastructure, but not recommended for production. -sed -i "s/salt\['nbroles.get'\](id)/grains\['roles'\]/" */top.sls +sed -i "s/salt\['http.query'\].*/grains\['roles'\] -%}/" */top.sls diff --git a/pillar/top.sls b/pillar/top.sls index 3302bd8..13efc78 100644 --- a/pillar/top.sls +++ b/pillar/top.sls @@ -1,5 +1,5 @@ {%- set id = salt['grains.get']('id') -%} -{%- set roles = salt['nbroles.get'](id) -%} +{%- set roles = salt['http.query']('http://127.0.0.1:5000/roles', decode=True, decode_type='json', params={"machine": id})['dict']['roles'] -%} {{ saltenv }}: '*': @@ -7,6 +7,6 @@ '{{ id }}': - ignore_missing: True - id.{{ id.replace('.', '_') }} - {% for role in roles %} + {%- for role in roles %} - role.{{ role }} {%- endfor %} diff --git a/salt/top.sls b/salt/top.sls index 632d4a2..6b92f79 100644 --- a/salt/top.sls +++ b/salt/top.sls @@ -1,5 +1,5 @@ {%- set id = salt['grains.get']('id') -%} -{%- set roles = salt['nbroles.get'](id) -%} +{%- set roles = salt['http.query']('http://127.0.0.1:5000/roles', decode=True, decode_type='json', params={"machine": id})['dict']['roles'] -%} {{ saltenv }}: '*': |