Add DCAE cleanup job, update CBS version
[oom.git] / kubernetes / dcaegen2 / charts / dcae-config-binding-service / values.yaml
1 #============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 #################################################################
21 global:
22   nodePortPrefix: 302
23   nodePortPrefixExt: 304
24   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.0
26   loggingRepository: docker.elastic.co
27   loggingImage: beats/filebeat:5.5.0
28   tlsRepository: nexus3.onap.org:10001
29   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:1.0.3
30   repositoryCred:
31     user: docker
32     password: docker
33
34 config:
35   logstashServiceName: log-ls
36   logstashPort: 5044
37   # Addresses of other ONAP entities
38   address:
39     consul:
40       host: consul-server
41       port: 8500
42
43 #################################################################
44 # Application configuration defaults.
45 #################################################################
46 # application image
47 repository: nexus3.onap.org:10001
48 image: onap/org.onap.dcaegen2.platform.configbinding:2.5.2
49 pullPolicy: Always
50
51 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 10
54   periodSeconds: 10
55   # necessary to disable liveness probe when setting breakpoints
56   # in debugger so K8s doesn't restart unresponsive container
57   # liveness not desirable for Cloudify Manager container
58   enabled: false
59
60 readiness:
61   initialDelaySeconds: 10
62   periodSeconds: 10
63   path: /healthcheck
64
65 service:
66   type: NodePort
67   name: config-binding-service
68   # TLS service
69   secure:
70     enabled: true
71     externalPort: 10443
72     internalPort: 10443
73     nodePort: 14
74   # Non-TLS service
75   insecure:
76     enabled: true
77     externalPort: 10000
78     internalPort: 10000
79     nodePort: 15
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 # Kubernetes namespace for components deployed via Cloudify manager
101 # If empty, use the common namespace
102 # dcae_ns: "dcae"