blob: d2bda885773fca33005a5d81d32edf1c22a9e4e5 [file] [log] [blame]
BorislavGe904ab22018-04-03 16:55:55 +03001#============LICENSE_START========================================================
2# ================================================================================
Jack Lucas332b5e72019-02-06 16:03:13 -05003# Copyright (c) 2018-2019 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
BorislavGe904ab22018-04-03 16:55:55 +03005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18
19#################################################################
20# Global configuration defaults.
21#################################################################
22global:
23 nodePortPrefix: 302
Jack Lucas346b52f2019-02-07 18:36:42 -050024 persistence: {}
BorislavGe904ab22018-04-03 16:55:55 +030025 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070026 readinessImage: readiness-check:2.0.0
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
35config:
36 logstashServiceName: log-ls
37 logstashPort: 5044
38 # Addresses of other ONAP entities
39 address:
40 consul:
41 host: consul-server
42 port: 8500
43
44#################################################################
45# Application configuration defaults.
46#################################################################
47# application image
48repository: nexus3.onap.org:10001
Jack Lucasc6861312020-03-03 15:57:59 -050049image: onap/org.onap.dcaegen2.deployments.cm-container:2.1.0
BorislavGe904ab22018-04-03 16:55:55 +030050pullPolicy: Always
51
Jack Lucasecc9f602019-03-19 11:38:42 -040052# name of shared ConfigMap with kubeconfig for multiple clusters
53multisiteConfigMapName: multisite-kubeconfig-configmap
54
55# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000056multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040057
Jack Lucas128c0ad2019-09-04 15:44:33 -040058# image for cleanup job container
59cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
60
BorislavGe904ab22018-04-03 16:55:55 +030061# probe configuration parameters
62liveness:
63 initialDelaySeconds: 10
64 periodSeconds: 10
65 # necessary to disable liveness probe when setting breakpoints
66 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040067 # liveness not desirable for Cloudify Manager container
68 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030069
70readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050071 initialDelaySeconds: 60
BorislavGe904ab22018-04-03 16:55:55 +030072 periodSeconds: 10
73
74service:
75 type: ClusterIP
76 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000077 externalPort: 443
78 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030079
vaibhav_16decdb582fa2018-09-20 12:32:47 +000080# Resource Limit flavor -By Default using small
81flavor: small
82# Segregation for Different environment (Small and Large)
83resources:
84 small:
85 limits:
86 cpu: 2
87 memory: 2Gi
88 requests:
89 cpu: 1
90 memory: 1Gi
91 large:
92 limits:
93 cpu: 4
94 memory: 4Gi
95 requests:
96 cpu: 2
97 memory: 2Gi
98 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +030099# Kubernetes namespace for components deployed via Cloudify manager
100# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400101# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500102
103# Parameters for persistent storage
104persistence:
105 enabled: true
106 accessMode: ReadWriteOnce
107 size: 4Gi
108 mountPath: /dockerdata-nfs
109 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100110 volumeReclaimPolicy: Retain