Skip to content

Commit

Permalink
Merge pull request #17 from containerum/fix-max-resource-quota
Browse files Browse the repository at this point in the history
change max cpu to 120, memory 280
  • Loading branch information
kfeofantov committed Dec 7, 2018
2 parents c7b3792 + 399a327 commit 5c55c91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/model/namespace.go
Expand Up @@ -17,10 +17,10 @@ import (
const (
ownerLabel = "owner"

minNamespaceCPU = 10 //m
minNamespaceMemory = 10 //Mi
maxNamespaceCPU = 12000 //m
maxNamespaceMemory = 28672 //Mi
minNamespaceCPU = 10 //m
minNamespaceMemory = 10 //Mi
maxNamespaceCPU = 120000 //m
maxNamespaceMemory = 286720 //Mi
)

type NamespaceKubeAPI kube_types.Namespace
Expand Down

0 comments on commit 5c55c91

Please sign in to comment.