Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grad release 1.24.0 #146

Merged
merged 9 commits into from
Oct 3, 2024
Merged
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ build/

### Environment ###
*.env
api/application-local.yaml
### Local dev ###
/src/main/resources/application-local.yaml
16 changes: 16 additions & 0 deletions api/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ logging:
boot:
autoconfigure:
logging: ${SPRING_BOOT_AUTOCONFIG_LOG_LEVEL}
jdk:
management:
agent: ERROR
sun:
management:
jmxremote: ERROR
rmi:
transport:
tcp: ERROR

authorization:
user: ${GRAD_STS_CLIENT_NAME}
Expand Down Expand Up @@ -146,3 +155,10 @@ endpoint:
splunk:
log-helper:
enabled: ${ENABLE_SPLUNK_LOG_HELPER}

server:
undertow:
threads:
worker: 128
io: 16
max-http-request-header-size: 20000
9 changes: 9 additions & 0 deletions api/src/test/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ logging:
boot:
autoconfigure:
logging: INFO
jdk:
management:
agent: ERROR
sun:
management:
jmxremote: ERROR
rmi:
transport:
tcp: ERROR

authorization:
user: grad-business-api
Expand Down
1 change: 1 addition & 0 deletions tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ FLB_CONFIG="[SERVICE]
Exclude_Path *.gz,*.zip
Parser docker
Mem_Buf_Limit 20MB
Buffer_Max_Size 1MB
[FILTER]
Name record_modifier
Match *
Expand Down
Loading