Merge "[COMMON][CERTS] Use sh to onboard custom certs" into guilin
[oom.git] / kubernetes / dcaemod / components / dcaemod-genprocessor / 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   persistence: {}
23   nodePortPrefix: 302
24   nodePortPrefixExt: 304
25   readinessImage: onap/oom/readiness:3.0.1
26   ingress:
27     virtualhost:
28       baseurl: "simpledemo.onap.org"
29
30 config:
31   onboardingAPIURL: http://dcaemod-onboarding-api:8080/onboarding
32
33 # application image
34 repository: nexus3.onap.org:10001
35 image: onap/org.onap.dcaegen2.platform.mod.genprocessor-job:1.0.2
36 httpImage: onap/org.onap.dcaegen2.platform.mod.genprocessor-http:1.0.2
37
38 service:
39   type: ClusterIP
40   name: dcaemod-genprocessor
41   ports:
42     - name: http
43       port: 8080
44
45 ingress:
46   enabled: true
47   enabledOverride: true
48   service:
49   - baseaddr: "dcaemod"
50     path: "/nifi-jars"
51     name: dcaemod-genprocessor
52     port: 8080
53   config:
54     ssl: "none"
55
56 # probe configuration parameters
57 liveness:
58   initialDelaySeconds: 60
59   periodSeconds: 30
60   # necessary to disable liveness probe when setting breakpoints
61   # in debugger so K8s doesn't restart unresponsive container
62   enabled: true
63   port: http
64
65 readiness:
66   initialDelaySeconds: 60
67   periodSeconds: 20
68   port: http
69   # Should have a proper readiness endpoint or script
70
71 # Parameters for persistent storage
72 persistence:
73     enabled: true
74 # Only the genprocessor-job writes, genprocessor-http mounts readOnly
75     accessMode: ReadWriteMany
76     size: 4Gi
77     mountPath: /dockerdata-nfs
78     mountSubPath: dcae-mod-genprocessor/data
79     volumeReclaimPolicy: Retain
80
81 # Resource Limit flavor -By Default using small
82 flavor: small
83 # Segregation for Different environment (Small and Large)
84 resources:
85   small:
86     limits:
87       cpu: 2
88       memory: 2Gi
89     requests:
90       cpu: 1
91       memory: 1Gi
92   large:
93     limits:
94       cpu: 4
95       memory: 4Gi
96     requests:
97       cpu: 2
98       memory: 2Gi
99   unlimited: {}
100