[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / dcaegen2 / components / 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   readinessImage: onap/oom/readiness:3.0.1
25   loggingRepository: docker.elastic.co
26   loggingImage: beats/filebeat:5.5.0
27   tlsRepository: nexus3.onap.org:10001
28   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
29   repositoryCred:
30     user: docker
31     password: docker
32
33 config:
34   logstashServiceName: log-ls
35   logstashPort: 5044
36   # Addresses of other ONAP entities
37   address:
38     consul:
39       host: consul-server
40       port: 8500
41
42 #################################################################
43 # Application configuration defaults.
44 #################################################################
45 # application image
46 repository: nexus3.onap.org:10001
47 image: onap/org.onap.dcaegen2.platform.configbinding:2.5.2
48 pullPolicy: Always
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54   # necessary to disable liveness probe when setting breakpoints
55   # in debugger so K8s doesn't restart unresponsive container
56   # liveness not desirable for Cloudify Manager container
57   enabled: false
58
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62   path: /healthcheck
63
64 service:
65   type: ClusterIP
66   name: config-binding-service
67   # TLS service
68   secure:
69     enabled: true
70     externalPort: 10443
71     internalPort: 10443
72     nodePort: 14
73   # Non-TLS service
74   insecure:
75     enabled: true
76     externalPort: 10000
77     internalPort: 10000
78     nodePort: 15
79
80 # Resource Limit flavor -By Default using small
81 flavor: small
82 # Segregation for Different environment (Small and Large)
83 resources:
84   small:
85     limits:
86       cpu: 2
87       memory: 2Gi
88     requests:
89       cpu: 1
90       memory: 1Gi
91   large:
92     limits:
93       cpu: 4
94       memory: 4Gi
95     requests:
96       cpu: 2
97       memory: 2Gi
98   unlimited: {}
99 # Kubernetes namespace for components deployed via Cloudify manager
100 # If empty, use the common namespace
101 # dcae_ns: "dcae"