Working with JSON
Last updated
Was this helpful?
Last updated
Was this helpful?
To convert output to json, use the --tojson
(or -j
) flag. This is supported by all commands. You can change the json output format by using the or flags. Note that due to the implementation of the JSON marshaller in GO, object keys will be sorted on output ().
Given a sample.yaml file of:
then
will output
To format the json:
will yield
Given a sample.yaml file of:
then
will output
e.g given a json file
then
will output
Each matching yaml node will be converted to json and printed out on a separate line. The and flags will still work too.
To read in json, just pass in a json file instead of yaml, it will just work - as json is a subset of yaml. However, you will probably want to to look more like an idiomatic yaml document.