[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / dcaegen2 / components / dcae-cloudify-manager / values.yaml
1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2018-2019 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   readinessImage: onap/oom/readiness:3.0.1
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:2.1.0
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.deployments.cm-container:3.1.0
49 pullPolicy: Always
50
51 # name of shared ConfigMap with kubeconfig for multiple clusters
52 multisiteConfigMapName: multisite-kubeconfig-configmap
53
54 # image for init container to initialize shared ConfigMap
55 multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
56
57 # image for cleanup job container
58 cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
59
60 # probe configuration parameters
61 liveness:
62   initialDelaySeconds: 10
63   periodSeconds: 10
64   # necessary to disable liveness probe when setting breakpoints
65   # in debugger so K8s doesn't restart unresponsive container
66   # liveness not desirable for Cloudify Manager container
67   enabled: false
68
69 readiness:
70   initialDelaySeconds: 60
71   periodSeconds: 10
72
73 service:
74   type: ClusterIP
75   name: dcae-cloudify-manager
76   externalPort: 443
77   internalPort: 443
78
79 # Resource Limit flavor -By Default using small
80 flavor: small
81 # Segregation for Different environment (Small and Large)
82 resources:
83   small:
84     limits:
85       cpu: 2
86       memory: 2Gi
87     requests:
88       cpu: 1
89       memory: 1Gi
90   large:
91     limits:
92       cpu: 4
93       memory: 4Gi
94     requests:
95       cpu: 2
96       memory: 2Gi
97   unlimited: {}
98 # Kubernetes namespace for components deployed via Cloudify manager
99 # If empty, use the common namespace
100 # dcae_ns: "dcae"
101
102 # Parameters for persistent storage
103 persistence:
104   enabled: true
105   accessMode: ReadWriteOnce
106   size: 4Gi
107   mountPath: /dockerdata-nfs
108   mountSubPath: dcae-cm/data
109   volumeReclaimPolicy: Retain