blob: bb2987881c96a338200258f66ba62e409807ba5e [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: {}
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020026 readinessImage: onap/oom/readiness:3.0.1
BorislavGe904ab22018-04-03 16:55:55 +030027 loggingRepository: docker.elastic.co
28 loggingImage: beats/filebeat:5.5.0
Jack Lucasc70bc7e2019-09-23 09:02:31 -040029 tlsRepository: nexus3.onap.org:10001
30 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
BorislavG254272e2018-05-09 14:34:14 +000031 repositoryCred:
32 user: docker
33 password: docker
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
56repository: nexus3.onap.org:10001
Jack Lucasab192892020-10-06 12:01:59 -040057image: onap/org.onap.dcaegen2.deployments.cm-container:3.3.4
BorislavGe904ab22018-04-03 16:55:55 +030058pullPolicy: Always
59
Jack Lucasecc9f602019-03-19 11:38:42 -040060# name of shared ConfigMap with kubeconfig for multiple clusters
61multisiteConfigMapName: multisite-kubeconfig-configmap
62
63# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000064multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040065
Jack Lucas128c0ad2019-09-04 15:44:33 -040066# image for cleanup job container
67cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
68
BorislavGe904ab22018-04-03 16:55:55 +030069# probe configuration parameters
70liveness:
71 initialDelaySeconds: 10
72 periodSeconds: 10
Jack Lucas089cd9d2020-09-30 12:24:20 -040073 timeoutSeconds: 5
BorislavGe904ab22018-04-03 16:55:55 +030074 # necessary to disable liveness probe when setting breakpoints
75 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040076 # liveness not desirable for Cloudify Manager container
77 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030078
79readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050080 initialDelaySeconds: 60
Jack Lucas089cd9d2020-09-30 12:24:20 -040081 # In some environments we see CM coming up
82 # properly but readiness probe timing out.
83 # Increasing the timeout and adjusting the
84 # period so it's longer than the timeout.
85 # (DCAEGEN2-2465)
86 periodSeconds: 30
87 timeoutSeconds: 10
BorislavGe904ab22018-04-03 16:55:55 +030088
89service:
90 type: ClusterIP
91 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000092 externalPort: 443
93 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030094
vaibhav_16decdb582fa2018-09-20 12:32:47 +000095# Resource Limit flavor -By Default using small
96flavor: small
97# Segregation for Different environment (Small and Large)
Jack Lucasab192892020-10-06 12:01:59 -040098# Due to memory issues in ONAP integration environment,
99# we've increased the memory amounts for both flavors.
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000100resources:
101 small:
102 limits:
103 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400104 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000105 requests:
106 cpu: 1
Jack Lucasab192892020-10-06 12:01:59 -0400107 memory: 2Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000108 large:
109 limits:
110 cpu: 4
Jack Lucasab192892020-10-06 12:01:59 -0400111 memory: 8Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000112 requests:
113 cpu: 2
Jack Lucasab192892020-10-06 12:01:59 -0400114 memory: 4Gi
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000115 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +0300116# Kubernetes namespace for components deployed via Cloudify manager
117# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400118# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500119
120# Parameters for persistent storage
121persistence:
122 enabled: true
123 accessMode: ReadWriteOnce
124 size: 4Gi
125 mountPath: /dockerdata-nfs
126 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100127 volumeReclaimPolicy: Retain