blob: 98511395b022176de7a07037f9de725264d1618e [file] [log] [blame]
BorislavGe904ab22018-04-03 16:55:55 +03001#============LICENSE_START========================================================
2# ================================================================================
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -04003# Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
Jack Lucasd12a1b62021-01-11 12:46:33 -05005# Copyright (c) 2020-2021 J. F. Lucas. All rights reserved.
BorislavGe904ab22018-04-03 16:55:55 +03006# ================================================================================
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#################################################################
23global:
24 nodePortPrefix: 302
Jack Lucas346b52f2019-02-07 18:36:42 -050025 persistence: {}
Jack Lucasc70bc7e2019-09-23 09:02:31 -040026 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucasf90784c2021-02-08 12:47:49 -050027 consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.0
BorislavG254272e2018-05-09 14:34:14 +000028 repositoryCred:
29 user: docker
30 password: docker
Jan Malkiewicz1f21b6e2021-02-22 15:40:00 +010031 # Enabling CMPv2 with CertManager
32 CMPv2CertManagerIntegration: false
33
34cmpv2issuer:
35 name: cmpv2-issuer-onap
BorislavGe904ab22018-04-03 16:55:55 +030036
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040037secrets:
38 - uid: 'cm-pass'
39 type: password
40 externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
41 password: '{{ .Values.config.cloudifyManagerPassword }}'
42 policy: required
43
BorislavGe904ab22018-04-03 16:55:55 +030044config:
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040045 cloudifyManagerPassword: "override me"
BorislavGe904ab22018-04-03 16:55:55 +030046 logstashServiceName: log-ls
47 logstashPort: 5044
48 # Addresses of other ONAP entities
49 address:
50 consul:
51 host: consul-server
52 port: 8500
53
54#################################################################
55# Application configuration defaults.
56#################################################################
57# application image
efiacorbcba3c72021-04-21 13:36:21 +010058image: onap/org.onap.dcaegen2.deployments.cm-container:4.6.0
BorislavGe904ab22018-04-03 16:55:55 +030059pullPolicy: Always
60
Jack Lucasecc9f602019-03-19 11:38:42 -040061# name of shared ConfigMap with kubeconfig for multiple clusters
62multisiteConfigMapName: multisite-kubeconfig-configmap
63
64# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000065multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040066
Jack Lucas128c0ad2019-09-04 15:44:33 -040067# image for cleanup job container
68cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
69
Jack Lucasd12a1b62021-01-11 12:46:33 -050070# default location for k8s deployments via Cloudify
71default_k8s_location: central
72
BorislavGe904ab22018-04-03 16:55:55 +030073# probe configuration parameters
74liveness:
75 initialDelaySeconds: 10
76 periodSeconds: 10
Jack Lucas089cd9d2020-09-30 12:24:20 -040077 timeoutSeconds: 5
BorislavGe904ab22018-04-03 16:55:55 +030078 # necessary to disable liveness probe when setting breakpoints
79 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040080 # liveness not desirable for Cloudify Manager container
81 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030082
83readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050084 initialDelaySeconds: 60
Jack Lucas089cd9d2020-09-30 12:24:20 -040085 # In some environments we see CM coming up
86 # properly but readiness probe timing out.
87 # Increasing the timeout and adjusting the
88 # period so it's longer than the timeout.
89 # (DCAEGEN2-2465)
90 periodSeconds: 30
91 timeoutSeconds: 10
BorislavGe904ab22018-04-03 16:55:55 +030092
93service:
94 type: ClusterIP
95 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000096 externalPort: 443
97 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030098
vaibhav_16decdb582fa2018-09-20 12:32:47 +000099# Resource Limit flavor -By Default using small
100flavor: small
101# Segregation for Different environment (Small and Large)
Jack Lucasab192892020-10-06 12:01:59 -0400102# Due to memory issues in ONAP integration environment,
103# we've increased the memory amounts for both flavors.
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000104resources:
105 small:
106 limits:
107 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400108 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000109 requests:
110 cpu: 1
Jack Lucasab192892020-10-06 12:01:59 -0400111 memory: 2Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000112 large:
113 limits:
114 cpu: 4
Jack Lucasab192892020-10-06 12:01:59 -0400115 memory: 8Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000116 requests:
117 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400118 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000119 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +0300120# Kubernetes namespace for components deployed via Cloudify manager
121# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400122# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500123
124# Parameters for persistent storage
125persistence:
126 enabled: true
127 accessMode: ReadWriteOnce
128 size: 4Gi
129 mountPath: /dockerdata-nfs
130 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100131 volumeReclaimPolicy: Retain