blob: 244265cb07bbaf0d30bb0935fab0bb964c1caae0 [file] [log] [blame]
Geora Barsky4b328b82018-08-01 12:02:33 -04001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
Geora Barsky4b328b82018-08-01 12:02:33 -040021# loggingRepository: docker.elastic.co
22# loggingImage: beats/filebeat:5.5.0
23
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28#repository: nexus3.onap.org:10001
29repository: nexus3.onap.org:10001
Gary Wu72901cd2018-11-15 18:27:40 -080030image: onap/validation:1.3.1
Geora Barsky4b328b82018-08-01 12:02:33 -040031#pullPolicy: Always
32pullPolicy: IfNotPresent
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37# application configuration
Geora Barsky4b328b82018-08-01 12:02:33 -040038config:
39 appDir: /opt/app/validation-service
40 configDir: /opt/app/validation-service/appconfig
41 configAuthDir: /opt/app/validation-service/appconfig/auth
42 configTopicsDir: /opt/app/validation-service/appconfig/topics
Pierre Rioux303680b2018-09-12 15:58:20 -040043 rulesDir: /opt/app/validation-service/bundleconfig/etc/rules/poa-event
Geora Barsky4b328b82018-08-01 12:02:33 -040044 maxHeap: 1024
Pierre Rioux5f4b3db2019-01-09 15:41:17 -050045 dataDictHostPort: http://dummy-host:443
46 dataDictCredentials: cG9tYmE6cG9tYmE=
Geora Barsky4b328b82018-08-01 12:02:33 -040047
48# default number of instances
49replicaCount: 1
50
51nodeSelector: {}
52
53affinity: {}
54
55# probe configuration parameters
56liveness:
jmac15bf8cd2019-02-05 19:44:55 +000057 initialDelaySeconds: 30
Geora Barsky4b328b82018-08-01 12:02:33 -040058 periodSeconds: 10
59 # necessary to disable liveness probe when setting breakpoints
60 # in debugger so K8s doesn't restart unresponsive container
61 enabled: false
62
63readiness:
jmac15bf8cd2019-02-05 19:44:55 +000064 initialDelaySeconds: 30
Geora Barsky4b328b82018-08-01 12:02:33 -040065 periodSeconds: 10
66 enabled: false
67
68#Example service definition with external, internal and node ports.
69service:
70 # The default service name (exposed in the service.yaml) will be the same
71 # name as the chart. If the service name needs to be overriden (such as
72 # when a subchart is shared), uncomment the value below.
73 #name: validation-service
74
75 #Services may use any combination of ports depending on the 'type' of
76 #service being defined.
77 type: ClusterIP
78 externalPort: 9529
79 internalPort: 8080
80# nodePort: <replace with unused node port suffix eg. 23>
81 # optional port name override - default can be defined in service.yaml
82 #portName: http
83
84ingress:
85 enabled: false
86
jmacaf645b52018-10-11 12:21:54 +000087# Resource Limit flavor -By Default using small
88flavor: small
89# Segregation for Different environment (Small and Large)
90resources:
91 small:
92 limits:
93 cpu: 1
94 memory: 1400Mi
95 requests:
96 cpu: 50m
97 memory: 700Mi
98 large:
99 limits:
100 cpu: 2
101 memory: 2800Mi
102 requests:
103 cpu: 100m
104 memory: 1400Mi
105 unlimited: {}