Page MenuHomeDevCentral

Provision servers and credentials list to Zemke-Rhyne
ClosedPublic

Authored by dereckson on Sep 8 2018, 10:31.
Tags
None
Referenced Files
F3780265: D1681.diff
Mon, Nov 25, 12:43
Unknown Object (File)
Fri, Nov 22, 11:24
Unknown Object (File)
Fri, Nov 22, 10:49
Unknown Object (File)
Fri, Nov 22, 10:02
Unknown Object (File)
Fri, Nov 22, 09:53
Unknown Object (File)
Fri, Nov 22, 05:27
Unknown Object (File)
Tue, Nov 19, 13:04
Unknown Object (File)
Tue, Nov 19, 05:11
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.