blob: 08e01d6258ef61a32e44dfacfaf7299afc8681d2 [file] [log] [blame]
BorislavGe904ab22018-04-03 16:55:55 +03001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2018 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
BorislavGe904ab22018-04-03 16:55:55 +030024 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070025 readinessImage: readiness-check:2.0.0
BorislavGe904ab22018-04-03 16:55:55 +030026 loggingRepository: docker.elastic.co
27 loggingImage: beats/filebeat:5.5.0
BorislavG254272e2018-05-09 14:34:14 +000028 repositoryCred:
29 user: docker
30 password: docker
BorislavGe904ab22018-04-03 16:55:55 +030031
32config:
33 logstashServiceName: log-ls
34 logstashPort: 5044
35 # Addresses of other ONAP entities
36 address:
37 consul:
38 host: consul-server
39 port: 8500
40
41#################################################################
42# Application configuration defaults.
43#################################################################
44# application image
45repository: nexus3.onap.org:10001
Gary Wu5329f1f2018-10-22 20:33:07 -070046image: onap/org.onap.dcaegen2.deployments.cm-container:1.4.2
BorislavGe904ab22018-04-03 16:55:55 +030047pullPolicy: Always
48
49# probe configuration parameters
50liveness:
51 initialDelaySeconds: 10
52 periodSeconds: 10
53 # necessary to disable liveness probe when setting breakpoints
54 # in debugger so K8s doesn't restart unresponsive container
Jack Lucas7586f972018-10-31 13:47:16 -040055 # liveness not desirable for Cloudify Manager container
56 enabled: false
BorislavGe904ab22018-04-03 16:55:55 +030057
58readiness:
59 initialDelaySeconds: 10
60 periodSeconds: 10
61
62service:
63 type: ClusterIP
64 name: dcae-cloudify-manager
65 externalPort: 80
66 internalPort: 80
67
vaibhav_16decdb582fa2018-09-20 12:32:47 +000068# Resource Limit flavor -By Default using small
69flavor: small
70# Segregation for Different environment (Small and Large)
71resources:
72 small:
73 limits:
74 cpu: 2
75 memory: 2Gi
76 requests:
77 cpu: 1
78 memory: 1Gi
79 large:
80 limits:
81 cpu: 4
82 memory: 4Gi
83 requests:
84 cpu: 2
85 memory: 2Gi
86 unlimited: {}
BorislavGe904ab22018-04-03 16:55:55 +030087# Kubernetes namespace for components deployed via Cloudify manager
88# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -040089# dcae_ns: "dcae"