blob: 719e73f43c450de0795af1426d0a29725781e061 [file] [log] [blame]
Jack Lucas6fae7632019-01-25 11:46:00 -05001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2019 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
Jack Lucas0108b522019-03-19 11:38:42 -040023 nodePortPrefixExt: 304
Jack Lucasc70bc7e2019-09-23 09:02:31 -040024 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucas6fae7632019-01-25 11:46:00 -050025
26config:
27 logstashServiceName: log-ls
28 logstashPort: 5044
29 # Addresses of other ONAP entities
30 address:
31 consul:
32 host: consul-server
33 port: 8500
34
35#################################################################
36# Application configuration defaults.
37#################################################################
38# application image
Vijay Venkatesh Kumar8eeeecd2021-09-13 17:02:05 -040039image: onap/org.onap.dcaegen2.platform.configbinding:2.5.4
Jack Lucas6fae7632019-01-25 11:46:00 -050040pullPolicy: Always
41
42# probe configuration parameters
43liveness:
44 initialDelaySeconds: 10
45 periodSeconds: 10
46 # necessary to disable liveness probe when setting breakpoints
47 # in debugger so K8s doesn't restart unresponsive container
48 # liveness not desirable for Cloudify Manager container
49 enabled: false
50
51readiness:
52 initialDelaySeconds: 10
53 periodSeconds: 10
54 path: /healthcheck
55
56service:
Jack Lucas4e61b3e2020-03-09 12:53:06 -040057 type: ClusterIP
Jack Lucas6fae7632019-01-25 11:46:00 -050058 name: config-binding-service
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000059 # TLS service
60 secure:
61 enabled: true
62 externalPort: 10443
63 internalPort: 10443
64 nodePort: 14
65 # Non-TLS service
66 insecure:
67 enabled: true
68 externalPort: 10000
69 internalPort: 10000
70 nodePort: 15
Jack Lucas6fae7632019-01-25 11:46:00 -050071
72# Resource Limit flavor -By Default using small
73flavor: small
74# Segregation for Different environment (Small and Large)
75resources:
76 small:
77 limits:
78 cpu: 2
79 memory: 2Gi
80 requests:
81 cpu: 1
82 memory: 1Gi
83 large:
84 limits:
85 cpu: 4
86 memory: 4Gi
87 requests:
88 cpu: 2
89 memory: 2Gi
90 unlimited: {}
91# Kubernetes namespace for components deployed via Cloudify manager
92# If empty, use the common namespace
93# dcae_ns: "dcae"
farida azmy37481802021-04-11 15:41:32 +020094
95#Pods Service Account
96serviceAccount:
97 nameOverride: dcae-config-binding-service
98 roles:
99 - read