dyff icon indicating copy to clipboard operation
dyff copied to clipboard

/ˈdʏf/ - diff tool for YAML files, and sometimes JSON

Results 55 dyff issues
Sort by recently updated
recently updated
newest added

I have a use-case where I'm looking to simplify Kubernetes helm chart values that have gotten overly verbose. This tool is useful for identifying where to look, but would be...

Given the following file: ``` --- - name: foo # comment here screws things up bar: {} ``` Running `dyff yaml foo.yaml` produces the following output: ``` --- - name:...

Is there a way to exclude additions in the report? It would be a useful feature to be able to exclude additions to focus on changed and deleted attributes as...

LE: I might have been mislead by [this post on Github and highlight.js](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code-and-syntax-highlighting), in the sense of them using each other, whereas maybe that [is not the case / sounds...

This bug has morphed a bit. I had originally tried to do `--exclude-regexp metadata\.annotations\.checksum/.*`, mistakenly thinking that the dots were part of a string that needed to be escaped in...

Implement YAML patch generation (somewhat similar to JSON Patch but a custom format in YAML) in `between` command, and add new `apply-patch` command to apply a patch to an existing...

Replace `github.com/gorilla/mux` package with a suitable alternative.

good first issue
dependencies

If you have the following: ``` kind: Deployment metadata: annotations: test.io/tracking-id: atestinstance-001 labels: app.kubernetes.io/instance: atestinstance001 ``` How do you use exclude with this? Just doing `metadata.labels` does exclude all the...

Is there a way to tell dyff to match to resources by labels, o maybe a regex of the name? I use dyff to show the diff of the result...

For more advanced compare operations like in GitOps repositories and automated environment promotion it‘s often required to exclude known but accepted differences. It would be really good to have a...