blob: a727b1a41bbdd4f30dab4aa157b145f596552304 [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: {}
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020025 readinessImage: onap/oom/readiness:3.0.1
BorislavGe904ab22018-04-03 16:55:55 +030026 loggingRepository: docker.elastic.co
27 loggingImage: beats/filebeat:5.5.0
Jack Lucasc70bc7e2019-09-23 09:02:31 -040028 tlsRepository: nexus3.onap.org:10001
29 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
BorislavG254272e2018-05-09 14:34:14 +000030 repositoryCred:
31 user: docker
32 password: docker
BorislavGe904ab22018-04-03 16:55:55 +030033
34config:
35 logstashServiceName: log-ls
36 logstashPort: 5044
37 # Addresses of other ONAP entities
38 address:
39 consul:
40 host: consul-server
41 port: 8500
42
43#################################################################
44# Application configuration defaults.
45#################################################################
46# application image
47repository: nexus3.onap.org:10001
Remigiusz Janeczekbba6a9c2020-08-19 08:03:06 +020048image: onap/org.onap.dcaegen2.deployments.cm-container:3.1.0
BorislavGe904ab22018-04-03 16:55:55 +030049pullPolicy: Always
50
Jack Lucasecc9f602019-03-19 11:38:42 -040051# name of shared ConfigMap with kubeconfig for multiple clusters
52multisiteConfigMapName: multisite-kubeconfig-configmap
53
54# image for init container to initialize shared ConfigMap
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000055multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0
Jack Lucasecc9f602019-03-19 11:38:42 -040056
Jack Lucas128c0ad2019-09-04 15:44:33 -040057# image for cleanup job container
58cleanupImage: onap/org.onap.dcaegen2.deployments.dcae-k8s-cleanup-container:1.0.0
59
BorislavGe904ab22018-04-03 16:55:55 +030060# probe configuration parameters
61liveness:
62 initialDelaySeconds: 10
63 periodSeconds: 10
64 # necessary to disable liveness probe when setting breakpoints
65 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040066 # liveness not desirable for Cloudify Manager container
67 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030068
69readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050070 initialDelaySeconds: 60
BorislavGe904ab22018-04-03 16:55:55 +030071 periodSeconds: 10
72
73service:
74 type: ClusterIP
75 name: dcae-cloudify-manager
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000076 externalPort: 443
77 internalPort: 443
BorislavGe904ab22018-04-03 16:55:55 +030078
vaibhav_16decdb582fa2018-09-20 12:32:47 +000079# Resource Limit flavor -By Default using small
80flavor: small
81# Segregation for Different environment (Small and Large)
82resources:
83 small:
84 limits:
85 cpu: 2
86 memory: 2Gi
87 requests:
88 cpu: 1
89 memory: 1Gi
90 large:
91 limits:
92 cpu: 4
93 memory: 4Gi
94 requests:
95 cpu: 2
96 memory: 2Gi
97 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +030098# Kubernetes namespace for components deployed via Cloudify manager
99# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400100# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -0500101
102# Parameters for persistent storage
103persistence:
104 enabled: true
105 accessMode: ReadWriteOnce
106 size: 4Gi
107 mountPath: /dockerdata-nfs
108 mountSubPath: dcae-cm/data
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +0100109 volumeReclaimPolicy: Retain