diff options
Diffstat (limited to 'kubernetes/vfc/components/vfc-vnflcm')
-rw-r--r-- | kubernetes/vfc/components/vfc-vnflcm/templates/deployment.yaml | 4 | ||||
-rw-r--r-- | kubernetes/vfc/components/vfc-vnflcm/values.yaml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kubernetes/vfc/components/vfc-vnflcm/templates/deployment.yaml b/kubernetes/vfc/components/vfc-vnflcm/templates/deployment.yaml index f131cf3d38..a9cf562e5b 100644 --- a/kubernetes/vfc/components/vfc-vnflcm/templates/deployment.yaml +++ b/kubernetes/vfc/components/vfc-vnflcm/templates/deployment.yaml @@ -55,10 +55,10 @@ spec: resources: limits: cpu: "100m" - memory: "0.5Gi" + memory: "500Mi" requests: cpu: "3m" - memory: "0.02Gi" + memory: "20Mi" containers: - name: {{ include "common.name" . }} command: diff --git a/kubernetes/vfc/components/vfc-vnflcm/values.yaml b/kubernetes/vfc/components/vfc-vnflcm/values.yaml index 9670d07673..bc22a32206 100644 --- a/kubernetes/vfc/components/vfc-vnflcm/values.yaml +++ b/kubernetes/vfc/components/vfc-vnflcm/values.yaml @@ -94,17 +94,17 @@ resources: small: limits: cpu: "200m" - memory: "0.5Gi" + memory: "500Mi" requests: cpu: "100m" - memory: "0.2Gi" + memory: "200Mi" large: limits: cpu: "400m" memory: "1Gi" requests: cpu: "200m" - memory: "0.5Gi" + memory: "500Mi" unlimited: {} # Log configuration |