You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 those are mostly likely to cause problems if engineers are following good release practices.
As an example, if I had this file as the "from"
apiVersion: apps/v1kind: Deploymentmetadata:
name: fooannotations:
bar: bar
And this file as the "to"
apiVersion: apps/v1kind: Deploymentmetadata:
name: fooannotations:
bar: bar2baz: baz
Running dyff with some sort of --exclude-additions flag to have the report only show
_ __ __
_||_ _ / _|/ _| between one.yml
/ _' | | | | |_| |_ and two.yml| (_| | |_| | _| _| \__,_|\__, |_| |_| returned one differences |___/metadata.annotations.bar ± value change - bar + bar2
The text was updated successfully, but these errors were encountered:
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 those are mostly likely to cause problems if engineers are following good release practices.
As an example, if I had this file as the "from"
And this file as the "to"
Running
dyff
with some sort of--exclude-additions
flag to have the report only showThe text was updated successfully, but these errors were encountered: