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

do not enforce resource limits and requests #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
18 changes: 12 additions & 6 deletions charts/ingest/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ enabled: true
app:
replicaCount: 1
port: 5009
resources:
limits:
memory: 2000Mi
requests:
cpu: 1000m
memory: 1000Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: /metrics
Expand Down
18 changes: 12 additions & 6 deletions charts/migrate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
app:
replicaCount: 1
port: 3000
resources:
limits:
memory: 60Mi
requests:
cpu: 40m
memory: 50Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi

image:
repository: docker.cloudsmith.io/convoy/convoy/frain-dev/convoy
Expand Down
18 changes: 12 additions & 6 deletions charts/server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
app:
replicaCount: 1
port: 5005
resources:
limits:
memory: 2000Mi
requests:
cpu: 1000m
memory: 1000Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: /metrics
Expand Down
18 changes: 12 additions & 6 deletions charts/stream/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ enabled: true
app:
replicaCount: 1
port: 5008
resources:
limits:
memory: 60Mi
requests:
cpu: 40m
memory: 50Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: /metrics
Expand Down
18 changes: 12 additions & 6 deletions charts/worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
app:
replicaCount: 1
port: 5006
resources:
limits:
memory: 2000Mi
requests:
cpu: 1000m
memory: 1000Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: /metrics
Expand Down
95 changes: 60 additions & 35 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,18 @@ worker:
endpoint: ""
app:
replicaCount: 1
resources:
limits:
cpu: 2000m
memory: 2000Mi
requests:
cpu: 1000m
memory: 1000m
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi

service:
# -- Type of service for the worker
Expand Down Expand Up @@ -199,13 +204,18 @@ ingest:
distributed_tracer_enabled: *tracerDistributedTracingEnabled
app:
replicaCount: 1
resources:
limits:
cpu: 2000m
memory: 2000Mi
requests:
cpu: 1000m
memory: 1000Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi

service:
# -- Type of service for the worker
Expand Down Expand Up @@ -240,13 +250,18 @@ stream:

app:
port: 5008
resources:
limits:
cpu: 50m
memory: 60Mi
requests:
cpu: 40m
memory: 50Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi

env:
environment: *environment
Expand Down Expand Up @@ -336,13 +351,18 @@ server:
endpoint: ""
app:
replicaCount: 1
resources:
limits:
cpu: 2000m
memory: 2000Mi
requests:
cpu: 1000m
memory: 1000Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi

ingress:
# -- Enable ingress for the server
Expand Down Expand Up @@ -389,10 +409,15 @@ migrate:
# @ignored
tag: *tag
app:
resources:
limits:
cpu: 50m
memory: 60Mi
requests:
cpu: 40m
memory: 50Mi
# It's generally advisable not to set default resource limits,
# allowing users to make intentional decisions based on their specific needs.
# This approach also helps ensure that the chart can run in environments
# with limited resources, like Minikube, KinD, etc. If you do wish to define resource limits,
# uncomment the lines below, adjust them as needed, and remove the curly braces after 'resources:'.
resources: {}
# limits:
# cpu: 1000m
# memory: 2000Mi
# requests:
# cpu: 1000m
# memory: 1000Mi
Loading