Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Fix for quota requests not being processed (#1378) #2232

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ require (
github.com/acorn-io/aml v0.0.0-20231009045340-a31c45f6d100
github.com/acorn-io/aml/cli v0.0.0-20231009055509-3c83c1247cf8
github.com/acorn-io/aml/legacy v0.0.0-20230929081514-1e9f3394432e
github.com/acorn-io/baaah v0.0.0-20231006151510-91fb95b6997d
github.com/acorn-io/baaah v0.0.0-20231009165317-af2b68361b8a
github.com/acorn-io/mink v0.0.0-20230804175412-8d121aae112c
github.com/acorn-io/namegenerator v0.0.0-20220915160418-9e3d5a0ffe78
github.com/acorn-io/z v0.0.0-20230714155009-a770ecbbdc45
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ github.com/acorn-io/aml/cli v0.0.0-20231009055509-3c83c1247cf8 h1:eQhRTIMBGbufCc
github.com/acorn-io/aml/cli v0.0.0-20231009055509-3c83c1247cf8/go.mod h1:CQ8Bc6t6xgu/K8vU8rl5LBz45aTzTj1eL4yQYZy6zh8=
github.com/acorn-io/aml/legacy v0.0.0-20230929081514-1e9f3394432e h1:W67DG9AcoNvBwIOR9OFUCZlSJBaHuvM2kXQ2+C6EnLk=
github.com/acorn-io/aml/legacy v0.0.0-20230929081514-1e9f3394432e/go.mod h1:XnJZSZq/tG/jWPE/tmm2zy90gOZrJRIaOyKpoMulxfE=
github.com/acorn-io/baaah v0.0.0-20231006151510-91fb95b6997d h1:6b7zZ4If/X0rT3j3MAXXnX/WIZMXfy+7YB8aruifwa4=
github.com/acorn-io/baaah v0.0.0-20231006151510-91fb95b6997d/go.mod h1:1KSGxZt0E2MDedJESKUUYtxCwsJ3A+xZiw2QD8cVbjU=
github.com/acorn-io/baaah v0.0.0-20231009165317-af2b68361b8a h1:0bHfiYUw4ojXCUfGHUPmRewrgJ/EpLQ4BaR4yEy8BC4=
github.com/acorn-io/baaah v0.0.0-20231009165317-af2b68361b8a/go.mod h1:1KSGxZt0E2MDedJESKUUYtxCwsJ3A+xZiw2QD8cVbjU=
github.com/acorn-io/cmd v0.0.0-20230929053520-ebe1b9879b38 h1:oJMGvI702ZW5L0JjJfGV9ekzU2IqqTGjmAQl4gkO6Ro=
github.com/acorn-io/cmd v0.0.0-20230929053520-ebe1b9879b38/go.mod h1:bo9ONX4kagbQmXcG4bnfoK53MBFFtbUZ5fR7s9NfS+M=
github.com/acorn-io/mink v0.0.0-20230804175412-8d121aae112c h1:3equCG9oMf2I5iDZxllb41jmNNSTiIpU3IegCHBtVyk=
Expand Down
25 changes: 12 additions & 13 deletions pkg/controller/quota/quota.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package quota
import (
"fmt"

apiv1 "github.com/acorn-io/runtime/pkg/apis/internal.acorn.io/v1"
v1 "github.com/acorn-io/runtime/pkg/apis/internal.acorn.io/v1"
adminv1 "github.com/acorn-io/runtime/pkg/apis/internal.admin.acorn.io/v1"
"github.com/acorn-io/runtime/pkg/labels"
corev1 "k8s.io/api/core/v1"
Expand All @@ -19,11 +19,11 @@ import (
// WaitForAllocation blocks the appInstance from being deployed until quota has been allocated on
// an associated QuotaRequest object.
func WaitForAllocation(req router.Request, resp router.Response) error {
appInstance := req.Object.(*apiv1.AppInstance)
appInstance := req.Object.(*v1.AppInstance)

// Create a condition setter for AppInstanceConditionQuota, which blocks the appInstance from being deployed
// until quota has been allocated.
status := condition.Setter(appInstance, resp, apiv1.AppInstanceConditionQuota)
status := condition.Setter(appInstance, resp, v1.AppInstanceConditionQuota)

// Don't do anything if quota isn't enabled for this project.
enforced, err := isEnforced(req, appInstance.Namespace)
Expand Down Expand Up @@ -64,7 +64,7 @@ func WaitForAllocation(req router.Request, resp router.Response) error {

// EnsureQuotaRequest ensures that the quota request exists and is up to date.
func EnsureQuotaRequest(req router.Request, resp router.Response) error {
appInstance := req.Object.(*apiv1.AppInstance)
appInstance := req.Object.(*v1.AppInstance)

// Don't do anything if quota isn't enabled for this project
if enforced, err := isEnforced(req, appInstance.Namespace); err != nil || !enforced {
Expand All @@ -86,7 +86,7 @@ func EnsureQuotaRequest(req router.Request, resp router.Response) error {
},
}

status := condition.Setter(appInstance, resp, apiv1.AppInstanceConditionQuota)
status := condition.Setter(appInstance, resp, v1.AppInstanceConditionQuota)

// Add the more complex values to the quota request
addContainers(app.Containers, quotaRequest)
Expand All @@ -106,14 +106,14 @@ func EnsureQuotaRequest(req router.Request, resp router.Response) error {
}

// addContainers adds the number of containers and accounts for the scale of each container.
func addContainers(containers map[string]apiv1.Container, quotaRequest *adminv1.QuotaRequestInstance) {
func addContainers(containers map[string]v1.Container, quotaRequest *adminv1.QuotaRequestInstance) {
for _, container := range containers {
quotaRequest.Spec.Resources.Containers += replicas(container.Scale)
}
}

// addCompute adds the compute resources of the containers passed to the quota request.
func addCompute(containers map[string]apiv1.Container, appInstance *apiv1.AppInstance, quotaRequest *adminv1.QuotaRequestInstance) {
func addCompute(containers map[string]v1.Container, appInstance *v1.AppInstance, quotaRequest *adminv1.QuotaRequestInstance) {
// For each workload, add their memory/cpu requests to the quota request
for name, container := range containers {
var requirements corev1.ResourceRequirements
Expand All @@ -135,7 +135,7 @@ func addCompute(containers map[string]apiv1.Container, appInstance *apiv1.AppIns
}

// addStorage adds the storage resources of the volumes passed to the quota request.
func addStorage(appInstance *apiv1.AppInstance, quotaRequest *adminv1.QuotaRequestInstance) error {
func addStorage(appInstance *v1.AppInstance, quotaRequest *adminv1.QuotaRequestInstance) error {
app := appInstance.Status.AppSpec

// Add the volume storage needed to the quota request. We only parse net new volumes, not
Expand Down Expand Up @@ -171,7 +171,7 @@ func addStorage(appInstance *apiv1.AppInstance, quotaRequest *adminv1.QuotaReque

// boundVolumeSize determines if the specified volume will be bound to an existing one. If
// it will not be bound, the size of the new volume is returned.
func boundVolumeSize(name string, bindings []apiv1.VolumeBinding) (bool, apiv1.Quantity) {
func boundVolumeSize(name string, bindings []v1.VolumeBinding) (bool, v1.Quantity) {
for _, binding := range bindings {
if binding.Target == name && binding.Volume == "" {
return true, binding.Size
Expand All @@ -181,7 +181,7 @@ func boundVolumeSize(name string, bindings []apiv1.VolumeBinding) (bool, apiv1.Q
}

// boundSecret determines if the specified secret will be bound to an existing one.
func boundSecret(name string, bindings []apiv1.SecretBinding) bool {
func boundSecret(name string, bindings []v1.SecretBinding) bool {
for _, binding := range bindings {
if binding.Target == name && binding.Secret == "" {
return true
Expand All @@ -190,10 +190,9 @@ func boundSecret(name string, bindings []apiv1.SecretBinding) bool {
return false
}

// isEnforced determines if the project has quota enabled.
// isEnforced determines if the project requires quota enforcement.
func isEnforced(req router.Request, namespace string) (bool, error) {
// Use the underlying Namespace type that stores Projects
project := corev1.Namespace{}
project := v1.ProjectInstance{}
if err := req.Client.Get(req.Ctx, router.Key("", namespace), &project); err != nil {
return false, err
}
Expand Down
Loading