diff --git a/charts/ingest/values.yaml b/charts/ingest/values.yaml index f1c7f73..c4cc56e 100755 --- a/charts/ingest/values.yaml +++ b/charts/ingest/values.yaml @@ -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 diff --git a/charts/migrate/values.yaml b/charts/migrate/values.yaml index 6fc486a..9caccbe 100755 --- a/charts/migrate/values.yaml +++ b/charts/migrate/values.yaml @@ -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 diff --git a/charts/server/values.yaml b/charts/server/values.yaml index dfe45f4..14d0270 100755 --- a/charts/server/values.yaml +++ b/charts/server/values.yaml @@ -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 diff --git a/charts/stream/values.yaml b/charts/stream/values.yaml index 5ef3fb4..c720624 100755 --- a/charts/stream/values.yaml +++ b/charts/stream/values.yaml @@ -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 diff --git a/charts/worker/values.yaml b/charts/worker/values.yaml index 778f4a8..3dc6c54 100755 --- a/charts/worker/values.yaml +++ b/charts/worker/values.yaml @@ -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 diff --git a/values.yaml b/values.yaml index a16caab..6b839dc 100755 --- a/values.yaml +++ b/values.yaml @@ -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 @@ -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 @@ -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 @@ -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 @@ -389,10 +409,15 @@ migrate: # @ignored tag: *tag app: - resources: - limits: - cpu: 50m - memory: 60Mi - requests: - cpu: 40m - memory: 50Mi \ No newline at end of file + # 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