3815d9af21ecbefd81039418f4d8703601dc2b44
[oom.git] / kubernetes / cds / values.yaml
1 # 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 #################################################################
19 global:
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
26 subChartsOnly:
27   enabled: true
28
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/ccsdk-cds-ui:1.0.0-STAGING-latest
32 pullPolicy: Always
33
34 # application configuration
35 config:
36
37
38 # default number of instances
39 replicaCount: 1
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
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
56 readiness:
57   httpGet:
58     path: /ping
59     port: 3000
60   initialDelaySeconds: 30
61   periodSeconds: 10
62
63 service:
64   type: NodePort
65   portName: ui
66   name: cds
67   nodePort: 97
68   internalPort: 3000
69
70 ingress:
71   enabled: false
72 # Resource Limit flavor -By Default using small
73 flavor: small
74 # Segregation for Different environment (Small and Large)
75 resources:
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: {}