CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsCPU limits can prevent containers from consuming valuable compute time for no benefit (e.g. inefficient code) that might lead to unnecessary costs. It is advisable to also configure CPU requests to ensure application stability.
Add resources.limits.cpu
field with required CPU limit value.
Add resources.limits.cpu
field with required CPU limit value.
resource "kubernetes_pod" "allowed" {
metadata {
name = "terraform-example609a"
}
spec {
container {
resources {
limits = {
memory = "512Mi"
cpu = "500m"
}
}
image = "nginx:1.7.9"
name = "example"
}
}
}