blob: 90bc0989d0af2d66f06ad918dfe0f371326ee065 [file] [log] [blame]
Jack Lucas7723ffe2020-02-13 17:19:01 -05001#============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#################################################################
21global:
22 nodePortPrefix: 302
23 nodePortPrefixExt: 304
Jack Lucas7723ffe2020-02-13 17:19:01 -050024
25config:
26 dashboardURL: https://inventory:8080/dcae-service-types
27 # The dashboard credentials aren't actually used, since
28 # the inventory API and the dashboard pass-through to the
29 # inventory API don't require authentication.
30 # Since the password doesn't matter, we let it be
31 # generated by the common secret template.
32 dashboardUser: nobody
33 #dashboardPassword: doesntmatter
34 mrTopicURL: http://message-router:3904/events
Jack Lucas00efe372020-03-11 13:48:20 -040035 importCloudify: https://www.getcloudify.org/spec/cloudify/4.5.5/types.yaml
Joanna Jeremicza7380312021-02-26 10:57:27 +010036 importK8S: plugin:k8splugin?version=>=3.5.1,<4.0.0
vv770d601e2b02020-08-17 22:40:00 +000037 importPostgres: plugin:pgaas?version=1.3.0
38 importClamp: plugin:clamppolicyplugin?version=1.1.0
efiacorbcba3c72021-04-21 13:36:21 +010039 importDMaaP: plugin:dmaap?version=>=1.5.1,<2.0.0
vv770d601e2b02020-08-17 22:40:00 +000040 useDmaapPlugin: false
Joanna Jeremicza7380312021-02-26 10:57:27 +010041 bpResourcesCpuLimit: 250m
42 bpResourcesMemoryLimit: 128Mi
Jack Lucas7723ffe2020-02-13 17:19:01 -050043
44secrets:
45 - uid: "dashsecret"
46 type: basicAuth
47 login: '{{ .Values.config.dashboardUser }}'
48 password: '{{ .Values.config.dashboardPassword }}'
49 passwordPolicy: generate
50
51service:
52 type: ClusterIP
53 name: dcaemod-runtime-api
54 ports:
55 - name: http
56 port: 9090
57
58# probe configuration parameters
59liveness:
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
67readiness:
68 initialDelaySeconds: 60
69 periodSeconds: 20
70 port: http
71 # Should have a proper readiness endpoint or script
72
73# application image
Joanna Jeremicza7380312021-02-26 10:57:27 +010074image: onap/org.onap.dcaegen2.platform.mod.runtime-web:1.2.3
Jack Lucas7723ffe2020-02-13 17:19:01 -050075
76# Resource Limit flavor -By Default using small
77flavor: small
78# Segregation for Different environment (Small and Large)
79resources:
80 small:
81 limits:
82 cpu: 2
83 memory: 2Gi
84 requests:
85 cpu: 1
86 memory: 1Gi
87 large:
88 limits:
89 cpu: 4
90 memory: 4Gi
91 requests:
92 cpu: 2
93 memory: 2Gi
94 unlimited: {}
vv770d601e2b02020-08-17 22:40:00 +000095