blob: 17ba5ec71ef374b70ecdeb8762accde937427d27 [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 Lucasd263e692021-08-16 16:02:23 -040027 consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1
BorislavG254272e2018-05-09 14:34:14 +000028 repositoryCred:
29 user: docker
30 password: docker
Jan Malkiewicz1f21b6e2021-02-22 15:40:00 +010031
32cmpv2issuer:
33 name: cmpv2-issuer-onap
BorislavGe904ab22018-04-03 16:55:55 +030034
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040035secrets:
36 - uid: 'cm-pass'
37 type: password
38 externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
39 password: '{{ .Values.config.cloudifyManagerPassword }}'
40 policy: required
41
BorislavGe904ab22018-04-03 16:55:55 +030042config:
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040043 cloudifyManagerPassword: "override me"
BorislavGe904ab22018-04-03 16:55:55 +030044 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
Vijay Venkatesh Kumara54781b2021-09-01 17:04:37 -040056image: onap/org.onap.dcaegen2.deployments.cm-container:4.6.1
BorislavGe904ab22018-04-03 16:55:55 +030057pullPolicy: Always
58
Jack Lucasecc9f602019-03-19 11:38:42 -040059# name of shared ConfigMap with kubeconfig for multiple clusters
60multisiteConfigMapName: multisite-kubeconfig-configmap
61
62# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000063multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040064
Jack Lucas128c0ad2019-09-04 15:44:33 -040065# image for cleanup job container
66cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
67
Jack Lucasd12a1b62021-01-11 12:46:33 -050068# default location for k8s deployments via Cloudify
69default_k8s_location: central
70
BorislavGe904ab22018-04-03 16:55:55 +030071# probe configuration parameters
72liveness:
73 initialDelaySeconds: 10
74 periodSeconds: 10
Jack Lucas089cd9d2020-09-30 12:24:20 -040075 timeoutSeconds: 5
BorislavGe904ab22018-04-03 16:55:55 +030076 # necessary to disable liveness probe when setting breakpoints
77 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040078 # liveness not desirable for Cloudify Manager container
79 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030080
81readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050082 initialDelaySeconds: 60
Jack Lucas089cd9d2020-09-30 12:24:20 -040083 # 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
BorislavGe904ab22018-04-03 16:55:55 +030090
91service:
92 type: ClusterIP
93 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000094 externalPort: 443
95 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030096
vaibhav_16decdb582fa2018-09-20 12:32:47 +000097# Resource Limit flavor -By Default using small
98flavor: small
99# Segregation for Different environment (Small and Large)
Jack Lucasab192892020-10-06 12:01:59 -0400100# Due to memory issues in ONAP integration environment,
101# we've increased the memory amounts for both flavors.
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000102resources:
103 small:
104 limits:
105 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400106 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000107 requests:
108 cpu: 1
Jack Lucasab192892020-10-06 12:01:59 -0400109 memory: 2Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000110 large:
111 limits:
112 cpu: 4
Jack Lucasab192892020-10-06 12:01:59 -0400113 memory: 8Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000114 requests:
115 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400116 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000117 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +0300118# Kubernetes namespace for components deployed via Cloudify manager
119# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400120# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500121
122# Parameters for persistent storage
123persistence:
124 enabled: true
125 accessMode: ReadWriteOnce
126 size: 4Gi
127 mountPath: /dockerdata-nfs
128 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100129 volumeReclaimPolicy: Retain
farida azmy37481802021-04-11 15:41:32 +0200130
131#Pods Service Account
132serviceAccount:
133 nameOverride: dcae-cloudify-manager
134 roles:
135 - create
136