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

feat(inventory-operator): increase resources limits & requests #263

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
2 changes: 1 addition & 1 deletion charts/akash-inventory-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)

# Major version bit highlights the mainnet release (e.g. mainnet4 = 4.x.x, mainnet5 = 5.x.x, ...)
version: 9.0.5
version: 9.0.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
10 changes: 5 additions & 5 deletions charts/akash-inventory-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ spec:
fieldPath: metadata.namespace
resources:
limits:
cpu: 500m
memory: 1Gi
cpu: 2000m
memory: 1024Mi
requests:
cpu: 100m
memory: 128Mi
cpu: 500m
memory: 256Mi
ports:
- containerPort: 8080
name: rest
Expand All @@ -68,4 +68,4 @@ spec:
volumes:
- name: config
configMap:
name: operator-inventory
name: operator-inventory
Loading