Page MenuHomeDevCentral

Provision servers and credentials list to Zemke-Rhyne
ClosedPublic

Authored by dereckson on Sep 8 2018, 10:31.
Tags
None
Referenced Files
F10933195: D1681.id4281.diff
Tue, Aug 5, 18:31
Unknown Object (File)
Tue, Aug 5, 12:47
Unknown Object (File)
Tue, Aug 5, 12:46
Unknown Object (File)
Tue, Aug 5, 12:43
Unknown Object (File)
Tue, Aug 5, 05:39
Unknown Object (File)
Mon, Aug 4, 22:42
Unknown Object (File)
Sun, Aug 3, 14:56
Unknown Object (File)
Sun, Aug 3, 14:30
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 Passed
Unit
No Test Coverage
Branch
zr-on-salt-master (branched from master)
Build Status
Buildable 2629
Build 2877: arc lint + arc unit

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
11

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.