Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ This repository contains examples for the ArgoCD/GitOps certification workshops

Take the certification yourself at [https://codefresh.io/courses/get-gitops-certified/](https://learning.codefresh.io/)

Good Commit
Good Commit XXX x
32 changes: 32 additions & 0 deletions helm-multi-source/01-single-app/prod-us-app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: prod-us-app
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
destination:
server: https://kubernetes.default.svc
namespace: prod-us
sources:
- repoURL: https://github.com/davidatbede/gitops-cert-level-3-examples.git
path: helm-multi-source/my-chart
targetRevision: HEAD
helm:
valueFiles:
- $values/helm-multi-source/my-values/common-values.yaml
- $values/helm-multi-source/my-values/app-version/prod-values.yaml
- $values/helm-multi-source/my-values/env-type/prod-values.yaml
- $values/helm-multi-source/my-values/regions/us-values.yaml
- $values/helm-multi-source/my-values/envs/prod-us-values.yaml
- repoURL: 'https://github.com/davidatbede/gitops-cert-level-3-examples.git'
targetRevision: HEAD
ref: values
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
prune: true
selfHeal: true