From a3034c3b043edd365002cce7aecbeb2fd0b41b95 Mon Sep 17 00:00:00 2001 From: Andrey Arapov <107317698+andy108369@users.noreply.github.com> Date: Tue, 12 Mar 2024 18:58:08 +0100 Subject: [PATCH] feat(inventory-operator): increase resources limits & requests (#263) --- charts/akash-inventory-operator/Chart.yaml | 2 +- .../akash-inventory-operator/templates/deployment.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/akash-inventory-operator/Chart.yaml b/charts/akash-inventory-operator/Chart.yaml index c898d9ff..e066fde2 100644 --- a/charts/akash-inventory-operator/Chart.yaml +++ b/charts/akash-inventory-operator/Chart.yaml @@ -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 diff --git a/charts/akash-inventory-operator/templates/deployment.yaml b/charts/akash-inventory-operator/templates/deployment.yaml index 68373bfc..fd83150a 100644 --- a/charts/akash-inventory-operator/templates/deployment.yaml +++ b/charts/akash-inventory-operator/templates/deployment.yaml @@ -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 @@ -68,4 +68,4 @@ spec: volumes: - name: config configMap: - name: operator-inventory \ No newline at end of file + name: operator-inventory