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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion applications/argo-cd-resources/templates/applications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -30,4 +34,4 @@ spec:
{{- range .syncOptions }}
- {{ . }}
{{- end }}
{{- end }}
{{- end }}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tiny: would like to preserve newline at end of file