dag-andersen / argocd-diff-preview

Tool for rendering manifest changes on pull requests.
45 stars 2 forks source link

Helm Example | Internal Chart #3

Closed dag-andersen closed 3 months ago

github-actions[bot] commented 3 months ago

Argo CD Diff Preview

Summary:

 {base-branch => target-branch}/my-app.yaml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
Diff:
```diff diff --git a/base-branch/my-app.yaml b/target-branch/my-app.yaml index 6d5672f..b78a835 100644 --- a/base-branch/my-app.yaml +++ b/target-branch/my-app.yaml @@ -8,7 +8,7 @@ metadata: app.kubernetes.io/name: myApp app.kubernetes.io/version: 1.16.0 helm.sh/chart: myApp-0.1.0 - name: test-namespace + name: new-namespace namespace: default spec: ports: @@ -32,7 +32,7 @@ metadata: app.kubernetes.io/name: myApp app.kubernetes.io/version: 1.16.0 helm.sh/chart: myApp-0.1.0 - name: test-namespace + name: new-namespace namespace: default --- @@ -45,10 +45,10 @@ metadata: app.kubernetes.io/name: myApp app.kubernetes.io/version: 1.16.0 helm.sh/chart: myApp-0.1.0 - name: test-namespace + name: new-namespace namespace: default spec: - replicas: 1 + replicas: 5 selector: matchLabels: app.kubernetes.io/instance: my-app @@ -81,5 +81,5 @@ spec: resources: {} securityContext: {} securityContext: {} - serviceAccountName: test-namespace + serviceAccountName: new-namespace ```