Compare commits

...

2 commits

Author SHA1 Message Date
Rodrigo Rodriguez (Pragmatismo)
5fc5b8b7b9 - Testing.
All checks were successful
GBCI / build (push) Successful in 7m58s
2025-08-17 22:05:01 -03:00
Rodrigo Rodriguez (Pragmatismo)
2f149d4e60 - Testing SET SCHEDULE. 2025-08-17 22:04:36 -03:00
2 changed files with 8 additions and 8 deletions

View file

@ -38,7 +38,7 @@ async fn main() -> std::io::Result<()> {
"/usr/bin/brave-browser-beta".to_string(),
));
#[cfg(feature = "default")]
#[cfg(feature = "local_llm")]
{
use crate::services::llm_local::ensure_llama_server_running;

View file

@ -6,16 +6,16 @@ declare -A container_limits=(
["*tables*"]="4096MB:100ms/100ms"
["*dns*"]="2048MB:100ms/100ms"
["*doc-editor*"]="512MB:10ms/100ms"
["*proxy*"]="20248MB:50ms/100ms"
["*proxy*"]="2048MB:100ms/100ms"
["*directory*"]="1024MB:50ms/100ms"
["*drive*"]="4096MB:25ms/100ms"
["*email*"]="4096MB:50ms/100ms"
["*webmail*"]="4096MB:50ms/100ms"
["*drive*"]="4096MB:50ms/100ms"
["*email*"]="4096MB:100ms/100ms"
["*webmail*"]="4096MB:100ms/100ms"
["*bot*"]="4096MB:50ms/100ms"
["*meeting*"]="4096MB:100ms/100ms"
["*alm*"]="512MB:50ms/100ms"
["*alm-ci*"]="4096MB:25ms/100ms"
["*system*"]="4096MB:10ms/100ms"
["*alm-ci*"]="4096MB:100ms/100ms"
["*system*"]="4096MB:50ms/100ms"
["*mailer*"]="4096MB:25ms/100ms"
)
@ -23,7 +23,7 @@ declare -A container_limits=(
DEFAULT_MEMORY="1024MB"
DEFAULT_CPU_ALLOWANCE="15ms/100ms"
CPU_COUNT=2
CPU_PRIORITY=5
CPU_PRIORITY=10
for pattern in "${!container_limits[@]}"; do
echo "Configuring $container..."