Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / pomba / components / pomba-contextaggregator / values.yaml
1 # Copyright © 2018 Amdocs
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 #################################################################
18 global:
19   nodePortPrefix: 302
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24 # application image
25 image: onap/pomba-context-aggregator:1.5.1
26 pullPolicy: Always
27
28 # flag to enable debugging - application support required
29 debugEnabled: false
30
31 # application configuration
32 config:
33   aaiCtxBuilderHost: pomba-aaictxbuilder
34   aaiCtxBuilderUsername: admin
35   aaiCtxBuilderPassword: OBF:1u2a1toa1w8v1tok1u30
36   sdcCtxBuilderHost: pomba-sdcctxbuilder
37   sdcCtxBuilderUsername: admin
38   sdcCtxBuilderPassword: OBF:1u2a1toa1w8v1tok1u30
39   sdncCtxBuilderHost: pomba-sdncctxbuilder
40   sdncCtxBuilderUsername: admin
41   sdncCtxBuilderPassword: OBF:1u2a1toa1w8v1tok1u30
42   networkdiscoveryCtxBuilderUsername: admin
43   networkdiscoveryCtxBuilderPassword: OBF:1u2a1toa1w8v1tok1u30
44   ctxBuilderExternalPort: 9530
45
46 # default number of instances
47 replicaCount: 1
48
49 nodeSelector: {}
50
51 affinity: {}
52
53 # probe configuration parameters
54 liveness:
55   initialDelaySeconds: 30
56   periodSeconds: 10
57   # necessary to disable liveness probe when setting breakpoints
58   # in debugger so K8s doesn't restart unresponsive container
59   enabled: true
60
61 readiness:
62   initialDelaySeconds: 30
63   periodSeconds: 10
64   enabled: false
65
66 #Example service definition with external, internal and node ports.
67 service:
68   # The default service name (exposed in the service.yaml) will be the same
69   # name as the chart. If the service name needs to be overriden (such as
70   # when a subchart is shared), uncomment the value below.
71   #name: <service-name-override>
72
73   #Services may use any combination of ports depending on the 'type' of
74   #service being defined.
75   type: ClusterIP
76   externalPort: 9529
77   internalPort: 9529
78   #nodePort: <replace with unused node port suffix eg. 23>
79   # optional port name override - default can be defined in service.yaml
80   #portName: http
81
82 ingress:
83   enabled: false
84
85 # Resource Limit flavor -By Default using small
86 flavor: small
87 # Segregation for Different environment (Small and Large)
88 resources:
89   small:
90     limits:
91       cpu: 1
92       memory: 800Mi
93     requests:
94       cpu: 10m
95       memory: 400Mi
96   large:
97     limits:
98       cpu: 2
99       memory: 1600Mi
100     requests:
101       cpu: 20m
102       memory: 800Mi
103   unlimited: {}