R6 updates for dcaegen2/dcaemod
[oom.git] / kubernetes / dcaemod / components / dcaemod-runtime-api / 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   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.0
26
27 config:
28   dashboardURL: https://inventory:8080/dcae-service-types
29   # The dashboard credentials aren't actually used, since
30   # the inventory API and the dashboard pass-through to the
31   # inventory API don't require authentication.
32   # Since the password doesn't matter, we let it be
33   # generated by the common secret template.
34   dashboardUser: nobody
35   #dashboardPassword: doesntmatter
36   mrTopicURL: http://message-router:3904/events
37   importCloudify: https://www.getcloudify.org/spec/cloudify/4.5.5/types.yaml
38   importK8S: https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R6/k8splugin/1.7.2/k8splugin_types.yaml
39   importPolicy: https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R6/dcaepolicyplugin/2.4.0/dcaepolicyplugin_types.yaml
40   importPostgres: https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/type_files/pgaas/1.1.0/pgaas_types.yaml
41   importClamp: https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R6/clamppolicyplugin/1.1.0/clamppolicyplugin_types.yaml
42   importDMaaP: https://nexus.onap.org/content/repositories/raw/org.onap.ccsdk.platform.plugins/type_files/dmaap/dmaap.yaml
43
44 secrets:
45   - uid: "dashsecret"
46     type: basicAuth
47     login: '{{ .Values.config.dashboardUser }}'
48     password: '{{ .Values.config.dashboardPassword }}'
49     passwordPolicy: generate
50
51 service:
52   type: ClusterIP
53   name: dcaemod-runtime-api
54   ports:
55     - name: http
56       port: 9090
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 60
61   periodSeconds: 30
62   port: http
63   # necessary to disable liveness probe when setting breakpoints
64   # in debugger so K8s doesn't restart unresponsive container
65   enabled: true
66
67 readiness:
68   initialDelaySeconds: 60
69   periodSeconds: 20
70   port: http
71   # Should have a proper readiness endpoint or script
72
73 # application image
74 repository: nexus3.onap.org:10001
75 image: onap/org.onap.dcaegen2.platform.mod.runtime-web:1.0.0
76
77 # Resource Limit flavor -By Default using small
78 flavor: small
79 # Segregation for Different environment (Small and Large)
80 resources:
81   small:
82     limits:
83       cpu: 2
84       memory: 2Gi
85     requests:
86       cpu: 1
87       memory: 1Gi
88   large:
89     limits:
90       cpu: 4
91       memory: 4Gi
92     requests:
93       cpu: 2
94       memory: 2Gi
95   unlimited: {}