Created
January 18, 2022 15:33
-
-
Save tanmay-bhat/22f0ba1c0cd6cf19b8f19c1fb28bc8b2 to your computer and use it in GitHub Desktop.
An eample Application definition yaml file to demonstrate argocd-image updater.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: argoproj.io/v1alpha1 | |
| kind: Application | |
| metadata: | |
| name: kube-ops-view-demo | |
| finalizers: | |
| - resources-finalizer.argocd.argoproj.io | |
| namespace: argocd | |
| annotations: | |
| argocd-image-updater.argoproj.io/image-list: registry.digitalocean.com/tanmaybhat/kube-ops-view | |
| argocd-image-updater.argoproj.io/write-back-method: git:secret:argocd/gitlab-token | |
| argocd-image-updater.argoproj.io/git-branch: main | |
| spec: | |
| destination: | |
| server: https://kubernetes.default.svc | |
| namespace: kube-ops-view | |
| project: default | |
| source: | |
| repoURL: 'https://gitlab.com/Tanmay-Bhat/argocd.git' | |
| path: argocd-image-updater/charts/kube-ops-view | |
| targetRevision: HEAD | |
| helm: | |
| valueFiles: | |
| - values.yaml | |
| syncPolicy: | |
| automated: | |
| prune: true | |
| selfHeal: true | |
| syncOptions: | |
| - CreateNamespace=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment