[DCAE][DCAEMOD] Deploy R7 container images
[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   readinessRepository: oomk8s
26   readinessImage: readiness-check:2.0.0
27   loggingRepository: docker.elastic.co
28   loggingImage: beats/filebeat:5.5.0
29   tlsRepository: nexus3.onap.org:10001
30   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
31   repositoryCred:
32     user: docker
33     password: docker
34
35 config:
36   logstashServiceName: log-ls
37   logstashPort: 5044
38   # Addresses of other ONAP entities
39   address:
40     consul:
41       host: consul-server
42       port: 8500
43
44 #################################################################
45 # Application configuration defaults.
46 #################################################################
47 # application image
48 repository: nexus3.onap.org:10001
49 image: onap/org.onap.dcaegen2.deployments.cm-container:3.0.0
50 pullPolicy: Always
51
52 # name of shared ConfigMap with kubeconfig for multiple clusters
53 multisiteConfigMapName: multisite-kubeconfig-configmap
54
55 # image for init container to initialize shared ConfigMap
56 multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
57
58 # image for cleanup job container
59 cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
60
61 # probe configuration parameters
62 liveness:
63   initialDelaySeconds: 10
64   periodSeconds: 10
65   # necessary to disable liveness probe when setting breakpoints
66   # in debugger so K8s doesn't restart unresponsive container
67   # liveness not desirable for Cloudify Manager container
68   enabled: false
69
70 readiness:
71   initialDelaySeconds: 60
72   periodSeconds: 10
73
74 service:
75   type: ClusterIP
76   name: dcae-cloudify-manager
77   externalPort: 443
78   internalPort: 443
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"
102
103 # Parameters for persistent storage
104 persistence:
105   enabled: true
106   accessMode: ReadWriteOnce
107   size: 4Gi
108   mountPath: /dockerdata-nfs
109   mountSubPath: dcae-cm/data
110   volumeReclaimPolicy: Retain