Skip to content

Commit 801147d

Browse files
committed
docs: translate Spanish comments to English
1 parent 7bb0d30 commit 801147d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/overcommit/make_overcommit.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func Overcommit(ctx context.Context, pod *corev1.Pod, recorder record.EventRecor
6868

6969
mutateContainers(pod.Spec.Containers, pod, cpuValue, memoryValue)
7070

71-
// comportamiento actual para CREATE/UPDATE normales
71+
// Also mutate init containers on regular CREATE/UPDATE
7272
if len(pod.Spec.InitContainers) > 0 {
7373
mutateContainers(pod.Spec.InitContainers, pod, cpuValue, memoryValue)
7474
}
@@ -97,7 +97,7 @@ func OvercommitOnResize(ctx context.Context, pod *corev1.Pod, recorder record.Ev
9797

9898
cpuValue, memoryValue := checkOvercommitType(ctx, *pod, client)
9999

100-
// En resize: solo containers normales.
100+
// On resize: only mutate regular containers, skip init containers.
101101
mutateContainers(pod.Spec.Containers, pod, cpuValue, memoryValue)
102102

103103
// Update annotation with new values after resize

0 commit comments

Comments
 (0)