Skip to content

Commit

Permalink
Merge pull request #1521 from GiganticMinecraft/add_argo
Browse files Browse the repository at this point in the history
add argo events and workflows
  • Loading branch information
outductor authored Dec 17, 2023
2 parents 8008d74 + 5e171b6 commit 790bd76
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: argo-events
namespace: argocd
spec:
project: cluster-wide-apps
source:
chart: argo-events
repoURL: https://argoproj.github.io/argo-helm
targetRevision: 2.4.1
helm:
releaseName: argo-events
# values: |

destination:
server: https://kubernetes.default.svc
namespace: argo-events
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: argo-workflows
namespace: argocd
spec:
project: cluster-wide-apps
source:
chart: argo-workflows
repoURL: https://argoproj.github.io/argo-helm
targetRevision: 0.40.1
helm:
releaseName: argo-workflows
# values: |

destination:
server: https://kubernetes.default.svc
namespace: argo-workflows
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true

0 comments on commit 790bd76

Please sign in to comment.