
Need to remove `Chart.yaml` so that Argo doesn't try to treat `app-of-apps/` as a Helm application (because that would stop it from using Jsonnet parsing).
36 lines
749 B
YAML
36 lines
749 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: open-project
|
|
namespace: argo
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
|
|
source:
|
|
chart: openproject
|
|
repoURL: https://charts.openproject.org
|
|
targetRevision: 4.3.0
|
|
|
|
helm:
|
|
values: |
|
|
ingress:
|
|
host: openproject.avril
|
|
persistence:
|
|
storageClassName: freenas-nfs-csi
|
|
postgresql:
|
|
auth:
|
|
existingSecret: postgres-auth
|
|
global:
|
|
storageClass: freenas-iscsi-csi
|
|
|
|
destination:
|
|
server: "https://kubernetes.default.svc"
|
|
namespace: open-project
|
|
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
syncOptions:
|
|
- CreateNamespace=true |