feat: add more to the tenantmanager k8s impl #46

Merged
johnride merged 5 commits from TenantManager_impl_k8s_anywhere into master 2025-05-29 20:15:43 +00:00
Showing only changes of commit 6490e5e82a - Show all commits

View File

@ -53,7 +53,15 @@ impl TenantManager for K8sTenantManager {
"limits.memory": format!("{:.3}Gi", config.resource_limits.memory_limit_gb),
"requests.cpu": format!("{:.0}",config.resource_limits.cpu_request_cores),
"requests.memory": format!("{:.3}Gi", config.resource_limits.memory_request_gb),
"requests.storage": format!("{:.3}", config.resource_limits.storage_total_gb)
"requests.storage": format!("{:.3}", config.resource_limits.storage_total_gb),
"pods": "20",
"services": "10",
"configmaps": "30",
"secrets": "30",
"persistentvolumeclaims": "15",
"services.loadbalancers": "2",
"services.nodeports": "5",
}
}
}