blob: 9022f60b8036cf44841b0d7cb2499f111090d4dc [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
BorislavGe904ab22018-04-03 16:55:55 +030031
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040032secrets:
33 - uid: 'cm-pass'
34 type: password
35 externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
36 password: '{{ .Values.config.cloudifyManagerPassword }}'
37 policy: required
38
BorislavGe904ab22018-04-03 16:55:55 +030039config:
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040040 cloudifyManagerPassword: "override me"
BorislavGe904ab22018-04-03 16:55:55 +030041 logstashServiceName: log-ls
42 logstashPort: 5044
43 # Addresses of other ONAP entities
44 address:
45 consul:
46 host: consul-server
47 port: 8500
48
49#################################################################
50# Application configuration defaults.
51#################################################################
52# application image
Edyta Krukowska8f017962021-02-24 07:22:13 +010053image: onap/org.onap.dcaegen2.deployments.cm-container:4.3.1
BorislavGe904ab22018-04-03 16:55:55 +030054pullPolicy: Always
55
Jack Lucasecc9f602019-03-19 11:38:42 -040056# name of shared ConfigMap with kubeconfig for multiple clusters
57multisiteConfigMapName: multisite-kubeconfig-configmap
58
59# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000060multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040061
Jack Lucas128c0ad2019-09-04 15:44:33 -040062# image for cleanup job container
63cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
64
Jack Lucasd12a1b62021-01-11 12:46:33 -050065# default location for k8s deployments via Cloudify
66default_k8s_location: central
67
BorislavGe904ab22018-04-03 16:55:55 +030068# probe configuration parameters
69liveness:
70 initialDelaySeconds: 10
71 periodSeconds: 10
Jack Lucas089cd9d2020-09-30 12:24:20 -040072 timeoutSeconds: 5
BorislavGe904ab22018-04-03 16:55:55 +030073 # necessary to disable liveness probe when setting breakpoints
74 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040075 # liveness not desirable for Cloudify Manager container
76 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030077
78readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050079 initialDelaySeconds: 60
Jack Lucas089cd9d2020-09-30 12:24:20 -040080 # In some environments we see CM coming up
81 # properly but readiness probe timing out.
82 # Increasing the timeout and adjusting the
83 # period so it's longer than the timeout.
84 # (DCAEGEN2-2465)
85 periodSeconds: 30
86 timeoutSeconds: 10
BorislavGe904ab22018-04-03 16:55:55 +030087
88service:
89 type: ClusterIP
90 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000091 externalPort: 443
92 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030093
vaibhav_16decdb582fa2018-09-20 12:32:47 +000094# Resource Limit flavor -By Default using small
95flavor: small
96# Segregation for Different environment (Small and Large)
Jack Lucasab192892020-10-06 12:01:59 -040097# Due to memory issues in ONAP integration environment,
98# we've increased the memory amounts for both flavors.
vaibhav_16decdb582fa2018-09-20 12:32:47 +000099resources:
100 small:
101 limits:
102 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400103 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000104 requests:
105 cpu: 1
Jack Lucasab192892020-10-06 12:01:59 -0400106 memory: 2Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000107 large:
108 limits:
109 cpu: 4
Jack Lucasab192892020-10-06 12:01:59 -0400110 memory: 8Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000111 requests:
112 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400113 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000114 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +0300115# Kubernetes namespace for components deployed via Cloudify manager
116# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400117# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500118
119# Parameters for persistent storage
120persistence:
121 enabled: true
122 accessMode: ReadWriteOnce
123 size: 4Gi
124 mountPath: /dockerdata-nfs
125 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100126 volumeReclaimPolicy: Retain