Update DCAE container versions
[oom.git] / kubernetes / dcaegen2 / charts / dcae-cloudify-manager / values.yaml
1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 # Modifications Copyright © 2018 Amdocs, Bell Canada
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.0
26   loggingRepository: docker.elastic.co
27   loggingImage: beats/filebeat:5.5.0
28   repositoryCred:
29     user: docker
30     password: docker
31
32 config:
33   logstashServiceName: log-ls
34   logstashPort: 5044
35   # Addresses of other ONAP entities
36   address:
37     consul:
38       host: consul-server
39       port: 8500
40
41 #################################################################
42 # Application configuration defaults.
43 #################################################################
44 # application image
45 repository: nexus3.onap.org:10001
46 image: onap/org.onap.dcaegen2.deployments.cm-container:1.4.0
47 pullPolicy: Always
48
49 # probe configuration parameters
50 liveness:
51   initialDelaySeconds: 10
52   periodSeconds: 10
53   # necessary to disable liveness probe when setting breakpoints
54   # in debugger so K8s doesn't restart unresponsive container
55   enabled: true
56
57 readiness:
58   initialDelaySeconds: 10
59   periodSeconds: 10
60
61 service:
62   type: ClusterIP
63   name: dcae-cloudify-manager
64   externalPort: 80
65   internalPort: 80
66
67 # Kubernetes namespace for components deployed via Cloudify manager
68 # If empty, use the common namespace
69 # dcae_ns: "dcae"