[CASSANDRA] Change values to makre Cassandra instances more stable
[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 # Copyright (c) 2020-2021 J. F. Lucas.  All rights reserved.
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19
20 #################################################################
21 # Global configuration defaults.
22 #################################################################
23 global:
24   nodePortPrefix: 302
25   persistence: {}
26   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
27   consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1
28   repositoryCred:
29     user: docker
30     password: docker
31
32 cmpv2issuer:
33   name: cmpv2-issuer-onap
34
35 secrets:
36   - uid: 'cm-pass'
37     type: password
38     externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
39     password: '{{ .Values.config.cloudifyManagerPassword }}'
40     policy: required
41
42 config:
43   cloudifyManagerPassword: "override me"
44   logstashServiceName: log-ls
45   logstashPort: 5044
46   # Addresses of other ONAP entities
47   address:
48     consul:
49       host: consul-server
50       port: 8500
51
52 #################################################################
53 # Application configuration defaults.
54 #################################################################
55 # application image
56 image: onap/org.onap.dcaegen2.deployments.cm-container:4.6.1
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 # default location for k8s deployments via Cloudify
69 default_k8s_location: central
70
71 # probe configuration parameters
72 liveness:
73   initialDelaySeconds: 10
74   periodSeconds: 10
75   timeoutSeconds: 5
76   # necessary to disable liveness probe when setting breakpoints
77   # in debugger so K8s doesn't restart unresponsive container
78   # liveness not desirable for Cloudify Manager container
79   enabled: false
80
81 readiness:
82   initialDelaySeconds: 60
83   # In some environments we see CM coming up
84   # properly but readiness probe timing out.
85   # Increasing the timeout and adjusting the
86   # period so it's longer than the timeout.
87   # (DCAEGEN2-2465)
88   periodSeconds: 30
89   timeoutSeconds: 10
90
91 service:
92   type: ClusterIP
93   name: dcae-cloudify-manager
94   externalPort: 443
95   internalPort: 443
96
97 # Resource Limit flavor -By Default using small
98 flavor: small
99 # Segregation for Different environment (Small and Large)
100 # Due to memory issues in ONAP integration environment,
101 # we've increased the memory amounts for both flavors.
102 resources:
103   small:
104     limits:
105       cpu: 2
106       memory: 4Gi
107     requests:
108       cpu: 1
109       memory: 2Gi
110   large:
111     limits:
112       cpu: 4
113       memory: 8Gi
114     requests:
115       cpu: 2
116       memory: 4Gi
117   unlimited: {}
118 # Kubernetes namespace for components deployed via Cloudify manager
119 # If empty, use the common namespace
120 # dcae_ns: "dcae"
121
122 # Parameters for persistent storage
123 persistence:
124   enabled: true
125   accessMode: ReadWriteOnce
126   size: 4Gi
127   mountPath: /dockerdata-nfs
128   mountSubPath: dcae-cm/data
129   volumeReclaimPolicy: Retain
130
131 #Pods Service Account
132 serviceAccount:
133   nameOverride: dcae-cloudify-manager
134   roles:
135     - create
136