-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Revamp how pipeline supports Limitranges #4176
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<!-- | ||
--- | ||
linkTitle: "LimitRange" | ||
weight: 300 | ||
--- | ||
--> | ||
|
||
# `LimitRange` support in Pipeline | ||
|
||
## `LimitRange`s, `Requests` and `Limits` | ||
|
||
Taken from the [LimitRange in kubernetes docs](https://kubernetes.io/docs/concepts/policy/limit-range/). | ||
|
||
By default, containers run with unbounded [compute resources](/docs/concepts/configuration/manage-resources-containers/) on a Kubernetes cluster. | ||
With resource quotas, cluster administrators can restrict resource consumption and creation on a `namespace` basis. | ||
Within a namespace, a Pod or Container can consume as much CPU and memory as defined by the namespace's resource quota. There is a concern that one Pod or Container could monopolize all available resources. A LimitRange is a policy to constrain resource allocations (to Pods or Containers) in a namespace. | ||
|
||
A _LimitRange_ provides constraints that can: | ||
|
||
- Enforce minimum and maximum compute resources usage per Pod or Container in a namespace. | ||
- Enforce minimum and maximum storage request per PersistentVolumeClaim in a namespace. | ||
- Enforce a ratio between request and limit for a resource in a namespace. | ||
- Set default request/limit for compute resources in a namespace and automatically inject them to Containers at runtime. | ||
|
||
`LimitRange` are validating and mutating `Requests` and `Limits`. Let's look, *in a nutshell*, on how those work in Kubernetes. | ||
|
||
- **Requests** are not enforced. If the node has more resource available than the request, the container can use it. | ||
- **Limits** on the other hand, are a hard stop. A container going over the limit, will be killed. | ||
|
||
Resource types for both are: | ||
- CPU | ||
- Memory | ||
- Ephemeral storage | ||
|
||
The next question is : how pods with resource and limits are run/scheduled ? | ||
The scheduler *computes* the amount of CPU and memory requests (using **Requests**) and tries to find a node to schedule it. | ||
|
||
Requests and limits can be applied to both Containers and Init Containers. | ||
- For init containers, the max of each type is taken | ||
- For containers, it sums all requests/limits for each containers | ||
|
||
This means, if you got the following: | ||
- initContainer1 : 1 CPU, 100m memory | ||
- initContainer2 : 2 CPU, 200m memory | ||
- container1 : 1 CPU, 50m memory | ||
- container2 : 2 CPU, 250m memory | ||
- container3 : 3 CPU, 500m memory | ||
|
||
The computation will be: | ||
- CPU : 2 (max init containers) + 6 (sum of containers) = 8 CPU | ||
- Memory: 200m (max init containers) + 800m (sum of containers) = 1000m (1G) | ||
|
||
## Tekton support | ||
|
||
The way Limits and Requests works in Kubernetes is because it is assumed that all containers run in parallel, and init container run before, each one after the others. | ||
|
||
That assumption — containers running in parallel — is not true in Tekton. They do all start together (because there is no way around this) **but** the *[entrypoint](https://github.com/tektoncd/pipeline/tree/main/cmd/entrypoint#entrypoint) hack* is making sure they actually run in sequence and thus there is always only one container that is actually consuming some resource at the same time. | ||
|
||
This means, we need to handle limits, request and LimitRanges in a *non-standard* way. Since the existing LimitRange mutating webhook won't take Tekton's requirements into account, Tekton needs to fully control all the values the LimitRange webhook might set. Let's try to define that. Tekton needs to take into account all the aspect of the LimitRange : the min/max as well as the default. If there is no default, but there is min/max, Tekton need then to **set** a default value that is between the min/max. If we set the value too low, the Pod won't be able to be created, similar if we set the value too high. **But** those values are set on **containers**, so we **have to** do our own computation to know what request to put on each containers. | ||
|
||
|
||
## A LimitRange is in the namespace | ||
|
||
We need to get the default (limits), default requests, min and max values (if they are here). | ||
|
||
Here are the rules for container's resources (requests and limits) computations: | ||
- **init containers:** they won't be summed, so the rules are simple | ||
- a container needs to have request and limits at least at the `min` and set to the `default` if any. | ||
- *use the default requests and the default limits (coming from the defaultLimit, or the min, …)* | ||
- **containers:** those will be summed at the end, so it gets a bit complex | ||
- a container needs to have request and limits at least at the `min` | ||
- the sum of the container request/limits **should be** as small as possible. This should be | ||
ensured by using the "smallest" possible request on it. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe this answers my question above about why the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think this was updated - and/or my understanding is just better now, but anyway lgtm 👍 👍 👍 |
||
|
||
One thing to note is that, in the case of a LimitRange being present, we need to **not rely** on the pod mutation webhook that takes the default into account ; what this means is, we need to specify all request and limits ourselves so that the mutation webhook doesn't have any work to do. | ||
|
||
- **No default value:** if there is no default value, we need to treat the min as the | ||
default. I think that's also what k8s does, at least in our computation. | ||
- **Default value:** we need to "try" to respect that as much as possible. | ||
- `defaultLimit` but no `defaultRequest`, then we set `defaultRequest` to be same as `min` (if present). | ||
- `defaultRequest` but no `defaultlimit`, then we use the `max` limit as the `defaultLimit` | ||
- no `defaultLimit`, no `defaultRequest`, then we use the `min` as `defaultRequest` and the `max` as `defaultLimit`. | ||
|
||
## Multiple LimitRange are in the namespace | ||
|
||
Similar to on LimitRange, except we need to act as if it was one LimitRange (virtual) with | ||
the correct value from each of them. | ||
|
||
- Take the maximum of the min values | ||
- Take the minimum of the max values | ||
- Take the default request that fits into the previous 2 min/max | ||
|
||
Once we have this "virtual" LimitRange, we can act as there was one `LimitRange`. Note that it is possible to define multiple `LimitRange` that would go conflict with each other and block any `Pod` scheduling. Tekton Pipeline will not do anything to try to go around this as it is a behaviour of Kubernetes itself. | ||
|
||
# References | ||
|
||
- [LimitRange in k8s docs](https://kubernetes.io/docs/concepts/policy/limit-range/) | ||
- [Configure default memory requests and limits for a Namespace](https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/) | ||
- [Configure default CPU requests and limits for a Namespace](https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-default-namespace/) | ||
- [Configure Minimum and Maximum CPU constraints for a Namespace](https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-constraint-namespace/) | ||
- [Configure Minimum and Maximum Memory constraints for a Namespace](https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-constraint-namespace/) | ||
- [Managing Resources for Containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | ||
- [Kubernetes best practices: Resource requests and limits](https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits) | ||
- [Restrict resource consumption with limit ranges](https://docs.openshift.com/container-platform/4.8/nodes/clusters/nodes-cluster-limit-ranges.html) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
Copyright 2020 The Tekton Authors | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
// Package limitrange defines logic for supporting Kubernetes LimitRange for the specific Tekton use cases | ||
package limitrange |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/* | ||
Copyright 2020 The Tekton Authors | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
package limitrange | ||
|
||
import ( | ||
"context" | ||
|
||
corev1 "k8s.io/api/core/v1" | ||
"k8s.io/apimachinery/pkg/api/resource" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/client-go/kubernetes" | ||
) | ||
|
||
func getVirtualLimitRange(ctx context.Context, namespace string, c kubernetes.Interface) (*corev1.LimitRange, error) { | ||
limitRanges, err := c.CoreV1().LimitRanges(namespace).List(ctx, metav1.ListOptions{}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
var limitRange corev1.LimitRange | ||
switch { | ||
case len(limitRanges.Items) == 0: | ||
// No LimitRange defined | ||
break | ||
case len(limitRanges.Items) == 1: | ||
// One LimitRange defined | ||
limitRange = limitRanges.Items[0] | ||
default: | ||
// Several LimitRange defined | ||
// Create a virtual LimitRange with | ||
// - Maximum of min values | ||
// - Minimum of max values | ||
// - Default that "fits" into min/max taken above | ||
// - Default request that "fits" into min/max taken above | ||
// - Smallest ratio (aka the most restrictive one) | ||
m := map[corev1.LimitType]corev1.LimitRangeItem{} | ||
for _, lr := range limitRanges.Items { | ||
for _, item := range lr.Spec.Limits { | ||
_, exists := m[item.Type] | ||
if !exists { | ||
m[item.Type] = corev1.LimitRangeItem{ | ||
Type: item.Type, | ||
Min: corev1.ResourceList{}, | ||
Max: corev1.ResourceList{}, | ||
Default: corev1.ResourceList{}, | ||
DefaultRequest: corev1.ResourceList{}, | ||
MaxLimitRequestRatio: corev1.ResourceList{}, | ||
} | ||
} | ||
// Min | ||
m[item.Type].Min[corev1.ResourceCPU] = maxOf(m[item.Type].Min[corev1.ResourceCPU], item.Min[corev1.ResourceCPU]) | ||
m[item.Type].Min[corev1.ResourceMemory] = maxOf(m[item.Type].Min[corev1.ResourceMemory], item.Min[corev1.ResourceMemory]) | ||
m[item.Type].Min[corev1.ResourceEphemeralStorage] = maxOf(m[item.Type].Min[corev1.ResourceEphemeralStorage], item.Min[corev1.ResourceEphemeralStorage]) | ||
// Max | ||
m[item.Type].Max[corev1.ResourceCPU] = minOf(m[item.Type].Max[corev1.ResourceCPU], item.Max[corev1.ResourceCPU]) | ||
m[item.Type].Max[corev1.ResourceMemory] = minOf(m[item.Type].Max[corev1.ResourceMemory], item.Max[corev1.ResourceMemory]) | ||
m[item.Type].Max[corev1.ResourceEphemeralStorage] = minOf(m[item.Type].Max[corev1.ResourceEphemeralStorage], item.Max[corev1.ResourceEphemeralStorage]) | ||
// MaxLimitRequestRatio | ||
m[item.Type].MaxLimitRequestRatio[corev1.ResourceCPU] = minOf(m[item.Type].MaxLimitRequestRatio[corev1.ResourceCPU], item.MaxLimitRequestRatio[corev1.ResourceCPU]) | ||
m[item.Type].MaxLimitRequestRatio[corev1.ResourceMemory] = minOf(m[item.Type].MaxLimitRequestRatio[corev1.ResourceMemory], item.MaxLimitRequestRatio[corev1.ResourceMemory]) | ||
m[item.Type].MaxLimitRequestRatio[corev1.ResourceEphemeralStorage] = minOf(m[item.Type].MaxLimitRequestRatio[corev1.ResourceEphemeralStorage], item.MaxLimitRequestRatio[corev1.ResourceEphemeralStorage]) | ||
} | ||
} | ||
// Handle Default and DefaultRequest | ||
for _, lr := range limitRanges.Items { | ||
for _, item := range lr.Spec.Limits { | ||
// Default | ||
m[item.Type].Default[corev1.ResourceCPU] = minOfBetween(m[item.Type].Default[corev1.ResourceCPU], item.Default[corev1.ResourceCPU], m[item.Type].Min[corev1.ResourceCPU], m[item.Type].Max[corev1.ResourceCPU]) | ||
m[item.Type].Default[corev1.ResourceMemory] = minOfBetween(m[item.Type].Default[corev1.ResourceMemory], item.Default[corev1.ResourceMemory], m[item.Type].Min[corev1.ResourceMemory], m[item.Type].Max[corev1.ResourceMemory]) | ||
m[item.Type].Default[corev1.ResourceEphemeralStorage] = minOfBetween(m[item.Type].Default[corev1.ResourceEphemeralStorage], item.Default[corev1.ResourceEphemeralStorage], m[item.Type].Min[corev1.ResourceEphemeralStorage], m[item.Type].Max[corev1.ResourceEphemeralStorage]) | ||
// DefaultRequest | ||
m[item.Type].DefaultRequest[corev1.ResourceCPU] = minOfBetween(m[item.Type].DefaultRequest[corev1.ResourceCPU], item.DefaultRequest[corev1.ResourceCPU], m[item.Type].Min[corev1.ResourceCPU], m[item.Type].Max[corev1.ResourceCPU]) | ||
m[item.Type].DefaultRequest[corev1.ResourceMemory] = minOfBetween(m[item.Type].DefaultRequest[corev1.ResourceMemory], item.DefaultRequest[corev1.ResourceMemory], m[item.Type].Min[corev1.ResourceMemory], m[item.Type].Max[corev1.ResourceMemory]) | ||
m[item.Type].DefaultRequest[corev1.ResourceEphemeralStorage] = minOfBetween(m[item.Type].DefaultRequest[corev1.ResourceEphemeralStorage], item.DefaultRequest[corev1.ResourceEphemeralStorage], m[item.Type].Min[corev1.ResourceCPU], m[item.Type].Max[corev1.ResourceCPU]) | ||
} | ||
} | ||
for _, v := range m { | ||
limitRange.Spec.Limits = append(limitRange.Spec.Limits, v) | ||
} | ||
} | ||
return &limitRange, nil | ||
} | ||
|
||
func maxOf(a, b resource.Quantity) resource.Quantity { | ||
if (&a).Cmp(b) > 0 { | ||
return a | ||
} | ||
return b | ||
} | ||
|
||
func minOf(a, b resource.Quantity) resource.Quantity { | ||
if isZero(a) || (&a).Cmp(b) > 0 { | ||
return b | ||
} | ||
return a | ||
} | ||
|
||
func minOfBetween(a, b, min, max resource.Quantity) resource.Quantity { | ||
if isZero(a) || (&a).Cmp(b) > 0 { | ||
return b | ||
} | ||
return a | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for updating this! its much more clear to me now 🙇♀️