blob: e187e119dc93a002b409579ed21d61c57d6eed5f [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 Lucas089cd9d2020-09-30 12:24:20 -04005# Copyright (c) 2020 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
BorislavG254272e2018-05-09 14:34:14 +000027 repositoryCred:
28 user: docker
29 password: docker
BorislavGe904ab22018-04-03 16:55:55 +030030
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040031secrets:
32 - uid: 'cm-pass'
33 type: password
34 externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
35 password: '{{ .Values.config.cloudifyManagerPassword }}'
36 policy: required
37
BorislavGe904ab22018-04-03 16:55:55 +030038config:
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040039 cloudifyManagerPassword: "override me"
BorislavGe904ab22018-04-03 16:55:55 +030040 logstashServiceName: log-ls
41 logstashPort: 5044
42 # Addresses of other ONAP entities
43 address:
44 consul:
45 host: consul-server
46 port: 8500
47
48#################################################################
49# Application configuration defaults.
50#################################################################
51# application image
Remigiusz Janeczek717f5402020-12-16 20:11:02 +010052image: onap/org.onap.dcaegen2.deployments.cm-container:3.4.2
BorislavGe904ab22018-04-03 16:55:55 +030053pullPolicy: Always
54
Jack Lucasecc9f602019-03-19 11:38:42 -040055# name of shared ConfigMap with kubeconfig for multiple clusters
56multisiteConfigMapName: multisite-kubeconfig-configmap
57
58# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000059multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040060
Jack Lucas128c0ad2019-09-04 15:44:33 -040061# image for cleanup job container
62cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
63
BorislavGe904ab22018-04-03 16:55:55 +030064# probe configuration parameters
65liveness:
66 initialDelaySeconds: 10
67 periodSeconds: 10
Jack Lucas089cd9d2020-09-30 12:24:20 -040068 timeoutSeconds: 5
BorislavGe904ab22018-04-03 16:55:55 +030069 # necessary to disable liveness probe when setting breakpoints
70 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040071 # liveness not desirable for Cloudify Manager container
72 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030073
74readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050075 initialDelaySeconds: 60
Jack Lucas089cd9d2020-09-30 12:24:20 -040076 # In some environments we see CM coming up
77 # properly but readiness probe timing out.
78 # Increasing the timeout and adjusting the
79 # period so it's longer than the timeout.
80 # (DCAEGEN2-2465)
81 periodSeconds: 30
82 timeoutSeconds: 10
BorislavGe904ab22018-04-03 16:55:55 +030083
84service:
85 type: ClusterIP
86 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000087 externalPort: 443
88 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030089
vaibhav_16decdb582fa2018-09-20 12:32:47 +000090# Resource Limit flavor -By Default using small
91flavor: small
92# Segregation for Different environment (Small and Large)
Jack Lucasab192892020-10-06 12:01:59 -040093# Due to memory issues in ONAP integration environment,
94# we've increased the memory amounts for both flavors.
vaibhav_16decdb582fa2018-09-20 12:32:47 +000095resources:
96 small:
97 limits:
98 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -040099 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000100 requests:
101 cpu: 1
Jack Lucasab192892020-10-06 12:01:59 -0400102 memory: 2Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000103 large:
104 limits:
105 cpu: 4
Jack Lucasab192892020-10-06 12:01:59 -0400106 memory: 8Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000107 requests:
108 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400109 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000110 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +0300111# Kubernetes namespace for components deployed via Cloudify manager
112# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400113# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500114
115# Parameters for persistent storage
116persistence:
117 enabled: true
118 accessMode: ReadWriteOnce
119 size: 4Gi
120 mountPath: /dockerdata-nfs
121 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100122 volumeReclaimPolicy: Retain