This is an automated email from the ASF dual-hosted git repository. rkk pushed a commit to branch SDAP-529 in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
commit 9aaced8dc7290ce2cf7131b7c86be0e1fe28d6b2 Author: rileykk <[email protected]> AuthorDate: Fri Oct 25 11:12:14 2024 -0700 SDAP-529: Added configuration for verbose logging for collection manager in the Helm chart --- CHANGELOG.md | 1 + helm/templates/collection-manager.yml | 4 ++++ helm/values.yaml | 3 +++ 3 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e0db1d..381ae67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - SDAP-526: Upgrade 2D tomography endpoint canopy and ground masking feature to allow for primary and backup datasets - SDAP-497: Added tool to ease building of releases. Can build from ASF distributions, git repos, and local - SDAP-520: (Documentation) Added guide to docs for evaluating official release candidates. +- SDAP-529: Added configuration for verbose logging for collection manager in the Helm chart ### Changed - SDAP-470: Modified `cdms-reader` tool to support primary to secondary matchups ### Deprecated diff --git a/helm/templates/collection-manager.yml b/helm/templates/collection-manager.yml index 22b7d5e..10802c5 100644 --- a/helm/templates/collection-manager.yml +++ b/helm/templates/collection-manager.yml @@ -64,6 +64,10 @@ spec: value: {{ $value }} {{- end }} {{- end }} + {{- if .Values.ingestion.collectionManager.verbose }} + - name: LOG_LEVEL + value: DEBUG + {{- end }} resources: requests: cpu: {{ .Values.ingestion.collectionManager.cpu }} diff --git a/helm/values.yaml b/helm/values.yaml index 2c302aa..ab86725 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -64,6 +64,9 @@ ingestion: ## memory refers to both request and limit memory: 0.5Gi + ## Enable verbose logging + verbose: false + configOperator: image: nexusjpl/config-operator:0.0.1
