Update inventory dependencies in Makefile
[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   persistence: {}
25   readinessRepository: oomk8s
26   readinessImage: readiness-check:2.0.0
27   loggingRepository: docker.elastic.co
28   loggingImage: beats/filebeat:5.5.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.deployments.cm-container:1.5.0
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
63 service:
64   type: ClusterIP
65   name: dcae-cloudify-manager
66   externalPort: 80
67   internalPort: 80
68
69 # Resource Limit flavor -By Default using small
70 flavor: small
71 # Segregation for Different environment (Small and Large)
72 resources:
73   small:
74     limits:
75       cpu: 2
76       memory: 2Gi
77     requests:
78       cpu: 1
79       memory: 1Gi
80   large:
81     limits:
82       cpu: 4
83       memory: 4Gi
84     requests:
85       cpu: 2
86       memory: 2Gi
87   unlimited: {}
88 # Kubernetes namespace for components deployed via Cloudify manager
89 # If empty, use the common namespace
90 # dcae_ns: "dcae"
91
92 # Parameters for persistent storage
93 persistence:
94   enabled: true
95   accessMode: ReadWriteOnce
96   size: 4Gi
97   mountPath: /dockerdata-nfs
98   mountSubPath: dcae-cm/data