diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2019-04-22 11:57:18 -0700 |
---|---|---|
committer | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2019-04-22 11:58:36 -0700 |
commit | 9b34a8a4d357fc5a03875f99244f48bdd8b2d03e (patch) | |
tree | dbabc5e56188f200913bcefb75424febaabe9952 /charts/aai-babel/values.yaml | |
parent | 9a427329607433c038f9a8fec8d866f354881234 (diff) | |
parent | 201670e70e53a3a9b7e2e8536e8e6719a8ebbab8 (diff) |
OOM code transfer for AAI
Transfer code from oom/kubernetes/aai into the
aai/oom tech team repo.
Change-Id: I7bcd43ff9acbc12ae36c95e3ebcee567fb7572cf
Issue-ID: CIMAN-250
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Diffstat (limited to 'charts/aai-babel/values.yaml')
-rw-r--r-- | charts/aai-babel/values.yaml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/charts/aai-babel/values.yaml b/charts/aai-babel/values.yaml new file mode 100644 index 0000000..60b7dd4 --- /dev/null +++ b/charts/aai-babel/values.yaml @@ -0,0 +1,81 @@ +# Copyright © 2018 Amdocs, AT&T +# Modifications Copyright © 2018 Bell Canada +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +################################################################# +# Global configuration defaults. +################################################################# +global: + readinessImage: readiness-check:2.0.2 + loggingImage: beats/filebeat:5.5.0 + +################################################################# +# Application configuration defaults. +################################################################# + +# application image +image: onap/babel:1.4-STAGING-latest + +flavor: small + +# application configuration +config: + keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 + keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 + +# default number of instances +replicaCount: 1 + +nodeSelector: {} + +affinity: {} + +# probe configuration parameters +liveness: + initialDelaySeconds: 10 + periodSeconds: 10 + # necessary to disable liveness probe when setting breakpoints + # in debugger so K8s doesn't restart unresponsive container + enabled: false + +readiness: + initialDelaySeconds: 10 + periodSeconds: 10 + +service: + type: NodePort + portName: babel + externalPort: 9516 + internalPort: 9516 + nodePort: 79 + +ingress: + enabled: false + +resources: + small: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 0.5 + memory: 1Gi + large: + limits: + cpu: 4 + memory: 8Gi + requests: + cpu: 2 + memory: 2Gi + unlimited: {} |