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

chore: remove limits #228

Merged
merged 1 commit into from
Dec 24, 2024
Merged
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
7 changes: 2 additions & 5 deletions charts/app/templates/frontend/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,9 @@ spec:
periodSeconds: 30
timeoutSeconds: 5
resources:
limits:
cpu: 50m
memory: 60Mi
requests:
cpu: 10m
memory: 20Mi
cpu: 20m
memory: 50Mi
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand Down
5 changes: 1 addition & 4 deletions charts/app/templates/rctool/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,9 @@ spec:
periodSeconds: 60
timeoutSeconds: 5
resources: # this is optional
limits:
cpu: 250m
memory: 500Mi
requests:
cpu: 50m
memory: 250Mi
memory: 350Mi
{{- with .Values.rctool.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 0 additions & 3 deletions frontend/openshift.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,6 @@ objects:
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}
readinessProbe:
httpGet:
path: /rctool
Expand Down
3 changes: 0 additions & 3 deletions frontend/openshift.nginx.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ objects:
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}
readinessProbe:
httpGet:
path: /rctool
Expand Down
Loading