Question

When I do highstate at minion, there is a strange error. I suspect, that the pillar data on the minion may not be right. Can I somehow dump the pillar data from minion?

Was it helpful?

Solution

As you said in your answer to your own question,

salt '*' pillar.data

will show all the data. However, you have some additional useful commands:

salt '*' pillar.raw

will show the raw data as it's loaded into the __pillar__ dict.

salt '*' pillar.get <key>

will show you the value of some key in pillar, with the ability to default to a certain value if the key doesn't exist. (The default is super useful when you're using pillar when templating states)

OTHER TIPS

To see the pillar data

salt '*' pillar.data

It's good idea to refresh the pillar data first using

salt '*' saltutil.refresh_pillar

Also using :

salt '*' pillar.items

Will show you all pillars node by node

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top