Skip to content

#257 Set sensible resource requests and limits #258

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

Merged
merged 2 commits into from
Apr 22, 2025
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


### Changed
- [#257] Set sensible resource requests and limits

## [v7.0.10-1] - 2025-04-17
- [#261] Upgrade CAS to 7.0.10.1

Expand All @@ -26,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Fix CVE-2025-24813](https://nvd.nist.gov/vuln/detail/CVE-2025-24813) – Apache Tomcat: HTTP/2 stream handling vulnerability
- [Fix OIDC WebAuthn Vulnerability](https://apereo.github.io/2025/04/11/oidc-webauthn-vuln/) – OIDC-Backchannel Authentication with WebAuthn could allow privilege escalation under specific circumstances


## [v7.0.8-13] - 2025-04-07
### Fixed
- Use default values for keys `ldap/attribute_given_name` and `ldap/attribute_surname` if they are configured as empty strings.
Expand Down
5 changes: 3 additions & 2 deletions dogu.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@
"Name": "container_config/memory_limit",
"Description": "Limits the container's memory usage. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).",
"Optional": true,
"Default": "1253m",
"Validation": {
"Type": "BINARY_MEASUREMENT"
}
Expand All @@ -250,7 +251,7 @@
"Name": "container_config/memory_request",
"Description": "Requests the container's minimal memory requirement. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte). This configuration is only applicable to the Multinode-EcoSystem.",
"Optional": true,
"Default": "1g",
"Default": "1253m",
"Validation": {
"Type": "BINARY_MEASUREMENT"
}
Expand All @@ -271,7 +272,7 @@
{
"Name": "container_config/cpu_core_request",
"Description": "Requests the container's minimal CPU core requirement. Use a positive floating value describing a fraction of 1 virtual CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU. This configuration is only applicable to the Multinode-EcoSystem.",
"Default": "0.5",
"Default": "0.35",
"Optional": true
},
{
Expand Down