Skip to content

v0.0.20

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Oct 08:39
· 34 commits to main since this release
b7c9b42

Changes:

  • Argo CD applications are now patched before argocd-diff-preview boots up a local cluster. If no applications need to be rendered, the tool will skip starting the cluster and installing Argo CD.
  • You can now provide the tool with a list of changed files, and it will only render applications that monitor the paths of those changed files. See the example here. However, you need to annotate which files each application should monitor.
    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: my-app
      namespace: argocd
      annotations:
        argocd-diff-preview/watch-pattern: "examples/.*" # Regex
    spec:
      ...