Skip to content

Commit

Permalink
Merge pull request #129 from ministryofjustice/LCAM-1553
Browse files Browse the repository at this point in the history
Helm template changes to set log level
  • Loading branch information
muthusubra authored Oct 7, 2024
2 parents f6e4f60 + dd27d54 commit 94b3400
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 3 deletions.
Binary file modified crime-evidence/docker-compose.override.yml
Binary file not shown.
6 changes: 3 additions & 3 deletions crime-evidence/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ server:

logging:
level:
root: INFO
org.springframework.web: INFO
org.springframework.security: DEBUG
root: ${LOG_LEVEL}
org.springframework.web: ${LOG_LEVEL}
org.springframework.security: ${LOG_LEVEL}

management:
server:
Expand Down
2 changes: 2 additions & 0 deletions helm_deploy/laa-crime-evidence/templates/_environment.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ env:
value: {{ .Values.java.host_env }}
- name: SENTRY_SAMPLE_RATE
value: {{ .Values.sentry.sampleRate | quote }}
- name: LOG_LEVEL
value: {{ .Values.logging.level }}
- name: MAAT_API_BASE_URL
value: {{ .Values.maatApi.baseUrl }}
- name: MAAT_API_OAUTH_URL
Expand Down
Binary file modified helm_deploy/laa-crime-evidence/values-dev.yaml
Binary file not shown.
Binary file modified helm_deploy/laa-crime-evidence/values-prod.yaml
Binary file not shown.
Binary file modified helm_deploy/laa-crime-evidence/values-test.yaml
Binary file not shown.
Binary file modified helm_deploy/laa-crime-evidence/values-uat.yaml
Binary file not shown.

0 comments on commit 94b3400

Please sign in to comment.