Page MenuHomeDevCentral

Provision servers and credentials list to Zemke-Rhyne
ClosedPublic

Authored by dereckson on Sep 8 2018, 10:31.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 18, 02:16
Unknown Object (File)
Sun, Apr 14, 15:39
Unknown Object (File)
Sat, Apr 13, 18:18
Unknown Object (File)
Fri, Apr 12, 14:42
Unknown Object (File)
Wed, Apr 10, 15:39
Unknown Object (File)
Mon, Apr 8, 19:19
Unknown Object (File)
Fri, Apr 5, 10:13
Unknown Object (File)
Wed, Apr 3, 10:42
Subscribers
None

Details

Summary

Ref T1412.

Test Plan

salt-call --local state.apply roles/saltmaster/zemke-rhyne/data

Diff Detail

Repository
rOPS Nasqueron Operations
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dereckson created this revision.
dereckson marked 3 inline comments as done.
dereckson added inline comments.
pillar/paas/docker.sls
98
pillar/top.sls
27

Needed to read zr_clients

roles/saltmaster/zemke-rhyne/data.sls
12

Require a new module: zr_clients|json produces a StrictUndefined JSON error, ie Jinja can't parse our list of objects.

This works:

data = __pillar__.get(key, {})
return json.dumps(data, indent=4, sort_keys=True)
This revision is now accepted and ready to land.Sep 8 2018, 10:35

Use key as a string as parameter, instead the variable content

Solve JSON to Python surprise convert issue

This revision was automatically updated to reflect the committed changes.