Merge branch 'master' into hotfix-create-resource-token

hotfix-create-resource-token
Jason Stirnaman 2025-04-15 10:09:38 -05:00 committed by GitHub
commit 68838279ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@
{{- $limit := .Get 0 | default "database" -}}
{{- $modifier := .Get 1 | default 0 -}}
{{- $coreLimits := dict "database" 5 "table" 2000 "column" 500 -}}
{{- $enterpriseLimits := dict "database" 100 "table" 4000 "column" 500 -}}
{{- $enterpriseLimits := dict "database" 100 "table" 10000 "column" 500 -}}
{{- $productLimits := cond (eq $product "core") $coreLimits $enterpriseLimits -}}
{{ add (index $productLimits $limit) $modifier }}