diff options
author | Dan Timoney <dtimoney@att.com> | 2020-09-23 08:52:47 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-09-23 08:52:52 -0400 |
commit | 6cc07e0d0206f8837a51ec8abfd69006892fb6f9 (patch) | |
tree | a8d5c895ca39d099c669e5b56f792e7595a40bf2 /kubernetes/cds/charts/cds-blueprints-processor | |
parent | a98765b504f848e0945f367b7da7b7bdeaefa9ad (diff) |
[CCSDK/CDS] Bump CDS charts to Guilin version
This change bumps the version of CDS to the Guilin version (1.0.0).
This should address issue SDNC-1351 (CDS has python 2 pods).
It also adds resource limits to the 2 CDS pods that are currently
missing limits (issue SDNC-1353).
Issue-ID: SDNC-1353
Issue-ID: SDNC-1351
Issue-ID: CCSDK-2742
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Ide8b60615adaa6a3bdeb430b34eef2f5bb95fb40
Diffstat (limited to 'kubernetes/cds/charts/cds-blueprints-processor')
-rwxr-xr-x | kubernetes/cds/charts/cds-blueprints-processor/values.yaml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/kubernetes/cds/charts/cds-blueprints-processor/values.yaml b/kubernetes/cds/charts/cds-blueprints-processor/values.yaml index f1b00c09f4..b23a1b05c2 100755 --- a/kubernetes/cds/charts/cds-blueprints-processor/values.yaml +++ b/kubernetes/cds/charts/cds-blueprints-processor/values.yaml @@ -61,7 +61,7 @@ secrets: ################################################################# # application image repository: nexus3.onap.org:10001 -image: onap/ccsdk-blueprintsprocessor:0.7.5 +image: onap/ccsdk-blueprintsprocessor:1.0.0 pullPolicy: Always # flag to enable debugging - application support required @@ -167,21 +167,21 @@ logback: hibernate: INFO onapCcsdkCds: INFO -resources: {} - # We usually recommend not to specify default resources and to leave this as a conscious - # choice for the user. This also increases chances charts run on environments with little - # resources, such as Minikube. If you do want to specify resources, uncomment the following - # lines, adjust them as necessary, and remove the curly braces after 'resources:'. - # - # Example: - # Configure resource requests and limits - # ref: http://kubernetes.io/docs/user-guide/compute-resources/ - # Minimum memory for development is 2 CPU cores and 4GB memory - # Minimum memory for production is 4 CPU cores and 8GB memory -#resources: -# limits: -# cpu: 2 -# memory: 4Gi -# requests: -# cpu: 2 -# memory: 4Gi +flavor: small + +resources: + small: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 1 + memory: 1Gi + large: + limits: + cpu: 4 + memory: 8Gi + requests: + cpu: 2 + memory: 4Gi + unlimited: {} |