Currently, I'm running the following commands to display the value differences between an installed helm chart version and a newly released version: ``` # Get installed cilium 1.16.2 helm chart values $ helm get values cilium -an kube-system | yq -Sy | tail -n +2 > v1.16.2.yaml # Get remote cilium 1.16.3 helm chart values $ helm show values cilium/cilium -n kube-system --version 1.16.3 | yq -Sy > v1.16.3.yaml # Show differences $ diff -Naur v1.16.2.yaml v1.16.3.yaml ``` Is there a way to obtain the same result with helm-diff? Thank you.