- Install gpg if you dont have it.
brew install gpg
- See what email address and name you're using for git
git config --global user.email
| #!/usr/bin/env python3 | |
| # Offline `kubectl diff` style tool (does not use cluster state). Diff two | |
| # local files containing templated manifests (e.g. kustomize or helm output). | |
| # | |
| # Resources in each file are matched by api, kind, namespace and name. This is | |
| # also shown in the filename fields of the diff output. | |
| # | |
| # Usage: | |
| # k8s-diff.py old-manifests.yaml new-manifests.yaml | |
| # kustomize build . | k8s-diff.py /tmp/old-manifests.yaml - |