Skip to content
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

fix(chart): allow not specifying resourceQuota quotas and limitRange resources #2074

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
42 changes: 21 additions & 21 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -740,21 +740,21 @@ policies:
annotations: {}
# Quota are the quota options
quota:
requests.cpu: 10
requests.memory: 20Gi
requests.storage: "100Gi"
requests.ephemeral-storage: 60Gi
limits.cpu: 20
limits.memory: 40Gi
limits.ephemeral-storage: 160Gi
services.nodeports: 0
services.loadbalancers: 1
count/endpoints: 40
count/pods: 20
count/services: 20
count/secrets: 100
count/configmaps: 100
count/persistentvolumeclaims: 20
# requests.cpu: 10
# requests.memory: 20Gi
# requests.storage: "100Gi"
# requests.ephemeral-storage: 60Gi
# limits.cpu: 20
# limits.memory: 40Gi
# limits.ephemeral-storage: 160Gi
# services.nodeports: 0
# services.loadbalancers: 1
# count/endpoints: 40
# count/pods: 20
# count/services: 20
# count/secrets: 100
# count/configmaps: 100
# count/persistentvolumeclaims: 20
# ScopeSelector is the resource quota scope selector
scopeSelector:
matchExpressions: []
Expand All @@ -770,14 +770,14 @@ policies:
annotations: {}
# Default are the default limits for the limit range
default:
ephemeral-storage: 8Gi
memory: 512Mi
cpu: "1"
# ephemeral-storage: 8Gi
# memory: 512Mi
# cpu: "1"
# DefaultRequest are the default request options for the limit range
defaultRequest:
ephemeral-storage: 3Gi
memory: 128Mi
cpu: 100m
# ephemeral-storage: 3Gi
# memory: 128Mi
# cpu: 100m

# NetworkPolicy specifies network policy options.
networkPolicy:
Expand Down