Browse Source

Merge e25d57c4aa into 53e28ff20c

pull/66/merge
CD 4 years ago
committed by GitHub
parent
commit
c34fa74749
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      README.md
  2. 20
      parent-app/parent-app.yaml

1
README.md

@ -19,3 +19,4 @@ to explore ArgoCD and GitOps!
| [plugins](plugins/) | Apps which demonstrate config management plugins usage |
| [blue-green](blue-green/) | Demonstrates how to implement blue-green deployment using [Argo Rollouts](https://github.com/argoproj/argo-rollouts)
| [apps](apps/) | An app composed of other apps |
| [parent-app](parent-app/) | Demonstrates a parent app that consist only of other apps |

20
parent-app/parent-app.yaml

@ -0,0 +1,20 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: applications
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
namespace: argocd
server: https://kubernetes.default.svc
project: default
source:
path: apps
repoURL: https://github.com/argoproj/argocd-example-apps
targetRevision: HEAD
syncPolicy:
automated:
selfHeal: true
prune: true
Loading…
Cancel
Save