8140b6b7980d0a821759db39f75f41a2857a59fa
[oom.git] / kubernetes / dcaegen2 / components / dcae-cloudify-manager / values.yaml
1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2018-2020 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 secrets:
35   - uid: 'cm-pass'
36     type: password
37     externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
38     password: '{{ .Values.config.cloudifyManagerPassword }}'
39     policy: required
40
41 config:
42   cloudifyManagerPassword: "override me"
43   logstashServiceName: log-ls
44   logstashPort: 5044
45   # Addresses of other ONAP entities
46   address:
47     consul:
48       host: consul-server
49       port: 8500
50
51 #################################################################
52 # Application configuration defaults.
53 #################################################################
54 # application image
55 repository: nexus3.onap.org:10001
56 image: onap/org.onap.dcaegen2.deployments.cm-container:3.3.2
57 pullPolicy: Always
58
59 # name of shared ConfigMap with kubeconfig for multiple clusters
60 multisiteConfigMapName: multisite-kubeconfig-configmap
61
62 # image for init container to initialize shared ConfigMap
63 multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
64
65 # image for cleanup job container
66 cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
67
68 # probe configuration parameters
69 liveness:
70   initialDelaySeconds: 10
71   periodSeconds: 10
72   # necessary to disable liveness probe when setting breakpoints
73   # in debugger so K8s doesn't restart unresponsive container
74   # liveness not desirable for Cloudify Manager container
75   enabled: false
76
77 readiness:
78   initialDelaySeconds: 60
79   periodSeconds: 10
80
81 service:
82   type: ClusterIP
83   name: dcae-cloudify-manager
84   externalPort: 443
85   internalPort: 443
86
87 # Resource Limit flavor -By Default using small
88 flavor: small
89 # Segregation for Different environment (Small and Large)
90 resources:
91   small:
92     limits:
93       cpu: 2
94       memory: 2Gi
95     requests:
96       cpu: 1
97       memory: 1Gi
98   large:
99     limits:
100       cpu: 4
101       memory: 4Gi
102     requests:
103       cpu: 2
104       memory: 2Gi
105   unlimited: {}
106 # Kubernetes namespace for components deployed via Cloudify manager
107 # If empty, use the common namespace
108 # dcae_ns: "dcae"
109
110 # Parameters for persistent storage
111 persistence:
112   enabled: true
113   accessMode: ReadWriteOnce
114   size: 4Gi
115   mountPath: /dockerdata-nfs
116   mountSubPath: dcae-cm/data
117   volumeReclaimPolicy: Retain