blob: 8ecf448af098d8a26b685d5e2c0b4962c789d091 [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
BorislavG254272e2018-05-09 14:34:14 +000029 repositoryCred:
30 user: docker
31 password: docker
BorislavGe904ab22018-04-03 16:55:55 +030032
33config:
34 logstashServiceName: log-ls
35 logstashPort: 5044
36 # Addresses of other ONAP entities
37 address:
38 consul:
39 host: consul-server
40 port: 8500
41
42#################################################################
43# Application configuration defaults.
44#################################################################
45# application image
46repository: nexus3.onap.org:10001
Jack Lucasecc9f602019-03-19 11:38:42 -040047image: onap/org.onap.dcaegen2.deployments.cm-container:1.6.1-STAGING-latest
BorislavGe904ab22018-04-03 16:55:55 +030048pullPolicy: Always
49
Jack Lucasecc9f602019-03-19 11:38:42 -040050# name of shared ConfigMap with kubeconfig for multiple clusters
51multisiteConfigMapName: multisite-kubeconfig-configmap
52
53# image for init container to initialize shared ConfigMap
54multisiteInitImage: onap/org.onap.dcaegen2.deployments.multisite-init-container:1.0.0-STAGING-latest
55
BorislavGe904ab22018-04-03 16:55:55 +030056# probe configuration parameters
57liveness:
58 initialDelaySeconds: 10
59 periodSeconds: 10
60 # necessary to disable liveness probe when setting breakpoints
61 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040062 # liveness not desirable for Cloudify Manager container
63 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030064
65readiness:
Jack Lucas332b5e72019-02-06 16:03:13 -050066 initialDelaySeconds: 60
BorislavGe904ab22018-04-03 16:55:55 +030067 periodSeconds: 10
68
69service:
70 type: ClusterIP
71 name: dcae-cloudify-manager
72 externalPort: 80
73 internalPort: 80
74
vaibhav_16decdb582fa2018-09-20 12:32:47 +000075# Resource Limit flavor -By Default using small
76flavor: small
77# Segregation for Different environment (Small and Large)
78resources:
79 small:
80 limits:
81 cpu: 2
82 memory: 2Gi
83 requests:
84 cpu: 1
85 memory: 1Gi
86 large:
87 limits:
88 cpu: 4
89 memory: 4Gi
90 requests:
91 cpu: 2
92 memory: 2Gi
93 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +030094# Kubernetes namespace for components deployed via Cloudify manager
95# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -040096# dcae_ns: "dcae"
Jack Lucascec10b42018-12-04 15:10:28 -050097
98# Parameters for persistent storage
99persistence:
100 enabled: true
101 accessMode: ReadWriteOnce
102 size: 4Gi
103 mountPath: /dockerdata-nfs
104 mountSubPath: dcae-cm/data