blob: 3815d9af21ecbefd81039418f4d8703601dc2b44 [file] [log] [blame]
Sylvain Desbureaux7acab562019-03-01 09:26:13 +01001# Copyright © 2018 Orange
2# Modifications Copyright © 2018 Amdocs, Bell Canada
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 303
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:1.1.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26subChartsOnly:
27 enabled: true
28
29# application image
30repository: nexus3.onap.org:10001
31image: onap/ccsdk-cds-ui:1.0.0-STAGING-latest
32pullPolicy: Always
33
34# application configuration
35config:
36
37
38# default number of instances
39replicaCount: 1
40
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 httpGet:
48 path: /
49 port: 3000
50 initialDelaySeconds: 30
51 periodSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 enabled: true
55
56readiness:
57 httpGet:
58 path: /ping
59 port: 3000
60 initialDelaySeconds: 30
61 periodSeconds: 10
62
63service:
64 type: NodePort
65 portName: ui
66 name: cds
67 nodePort: 97
68 internalPort: 3000
69
70ingress:
71 enabled: false
72# Resource Limit flavor -By Default using small
73flavor: small
74# Segregation for Different environment (Small and Large)
75resources:
76 small:
77 limits:
78 cpu: 1
79 memory: 1Gi
80 requests:
81 cpu: 10m
82 memory: 100Mi
83 large:
84 limits:
85 cpu: 2
86 memory: 2Gi
87 requests:
88 cpu: 200m
89 memory: 200Mi
90 unlimited: {}