Security Review is in much better shape after cleaning up the warnings about hardcoded IP addresses in test files.
Next I looked into bugs, we've got quiet a lot in the fronted code. I'm not experienced enough in TS/JS to make sense of them. Maybe also false positives? Forwarded it to our UI team.
I guess I found at least 1 thing where I can tell for sure that this is a bug π:
β’ β’ β’
Missing some Tweet in this thread? You can try to
force a refresh
Assign each Pod a single responsibility, focusing on a specific process or task. By keeping pods lean and focused, you enhance maintainability and avoid unnecessary complexity. #Modularity#ContainerOrchestration
2/11: βοΈ Resource Allocation βοΈ
Allocate CPU and memory resources to each Pod based on its workload. Keep in mind the QoS Levels:
- Guaranteed (requests == limit)
- Burstable (requests < limit)
- BestEffort (no limit specified) #ResourceOptimization#Efficiency