Files
kustomize/cmd/config
Phillip Wittrock 98431f6a00 fix kyaml issue where dropping Style created issues
dropping the node style creates a compatibility issue where quotes around "on" are dropped
because yaml.v3 interprets it as a string.

other yaml parsers interpret on as a bool value, and parse it as a bool rather than string.

fix: retain the original style so it is kept as quoted.

- fmt: don't drop the styles
- merge2: keep the style when merging elements
- setting a field: if changing the value of a scalar field, retain its style by default
2019-12-19 20:25:31 -08:00
..
2019-12-12 12:46:31 -08:00
2019-12-12 12:46:31 -08:00

cmd/config

This package exists to expose config filters directly as cli commands for the purposes of development of the kyaml package and as a reference implementation for using the libraries.

Docs

All documentation is also built directly into the config command group using kustomize help config.

Build Command

Build the config command under GOBIN

$ make

Run Tests

Run all tests, linting, etc and build

$ make all