Initial delivery of helm charts to deploy mod2 components. Resolved all
[dcaegen2/platform.git] / mod2 / assembly / helm / components / catalog-service / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
17
18 #################################################################
19 # Global configuration defaults.
20 #################################################################
21 global:
22   nodePortPrefix: 302
23   nodePortPrefixExt: 304
24   repository: nexus3.onap.org:10001
25   readinessImage: onap/oom/readiness:3.0.1
26
27 config:
28   policyModelDevServer: "<K8SNodeip>"
29   policyModelDevPort: "30522"
30   policyModelDevUser: "healthcheck"
31   policyModelDevPassword: "<PASSWORD>"
32   dcaePlatformDevServer: "<K8SNodeip>"
33   dcaePlatformDevPort: "30418"
34   dcaePlatformDevUser: "su1234"
35   dcaePlatformDevPassword: "<PASSWORD>"
36   mongoDb: "dcaemod2-mongohost"
37
38 service:
39   type: NodePort
40   name: catalog-service
41   ports:
42     - name: http
43       port: 8080
44       port_protocol: http
45       nodePort: 1
46   nodePortPrefixOverride : 3100
47   externalPort: 8080
48   internalPort: 8080
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 60
53   periodSeconds: 30
54   port: http
55   # necessary to disable liveness probe when setting breakpoints
56   # in debugger so K8s doesn't restart unresponsive container
57   enabled: false
58
59 readiness:
60   initialDelaySeconds: 60
61   periodSeconds: 20
62   path: /swagger-ui.html
63   #path: /
64   scheme: HTTP
65   # Should have a proper readiness endpoint or script
66
67 # application image
68 image: onap/org.onap.dcaegen2.platform.mod.catalog-service:1.0.1-SNAPSHOT
69 #image: nginx
70
71 # Resource Limit flavor -By Default using small
72 flavor: small
73 # Segregation for Different environment (Small and Large)
74 resources:
75   small:
76     limits:
77       cpu: 2
78       memory: 2Gi
79     requests:
80       cpu: 1
81       memory: 1Gi
82   large:
83     limits:
84       cpu: 4
85       memory: 4Gi
86     requests:
87       cpu: 2
88       memory: 2Gi
89   unlimited: {}
90