diff --git a/CHANGELOG.md b/CHANGELOG.md index d5dc49b..fe97e95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ See [keep a changelog] for information about writing changes to this log. ## [Unreleased] +### Added + +* Added optional `directoryRecurse` configuration for Argo CD applications to render + `spec.source.directory.recurse` when explicitly enabled. + +### Changed + +* Set admin access to other users chats to disabled (false) as default. +* Licensed repo under MPL 2.0. + ### Fixed * Rename webui dashboard ConfigMap data key from `dcgm-dashboard.json` to `openwebui-dashboard.json` to diff --git a/applications/argo-cd-resources/templates/applications.yaml b/applications/argo-cd-resources/templates/applications.yaml index 71037a0..99b4a2d 100644 --- a/applications/argo-cd-resources/templates/applications.yaml +++ b/applications/argo-cd-resources/templates/applications.yaml @@ -11,6 +11,10 @@ spec: repoURL: {{ $.Values.repoUrl }} path: applications/{{ .path | default .name }} targetRevision: HEAD + {{- if .directoryRecurse }} + directory: + recurse: {{ .directoryRecurse }} + {{- end }} helm: {{- if .releaseName }} releaseName: {{ .releaseName }} @@ -30,4 +34,4 @@ spec: {{- range .syncOptions }} - {{ . }} {{- end }} -{{- end }} +{{- end }} \ No newline at end of file