blob: fd705499d01db6cc3cae399d5390c6773d70ef6c [file] [log] [blame]
Jack Lucas332b5e72019-02-06 16:03:13 -05001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# ============LICENSE_END=========================================================
17
18#################################################################
19# Global configuration defaults.
20#################################################################
21global:
22 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020023 readinessImage: onap/oom/readiness:3.0.1
Jack Lucas332b5e72019-02-06 16:03:13 -050024 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26 tlsRepository: nexus3.onap.org:10001
Jack Lucasc70bc7e2019-09-23 09:02:31 -040027 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucas332b5e72019-02-06 16:03:13 -050028 consulLoaderRepository: nexus3.onap.org:10001
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000029 consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.0.0
Jack Lucas332b5e72019-02-06 16:03:13 -050030 repositoryCred:
31 user: docker
32 password: docker
33
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
Alex Shatov7de667c2020-02-28 15:05:14 -050048image: onap/org.onap.dcaegen2.platform.deployment-handler:4.3.0
Jack Lucas332b5e72019-02-06 16:03:13 -050049pullPolicy: Always
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55 # necessary to disable liveness probe when setting breakpoints
56 # in debugger so K8s doesn't restart unresponsive container
57 # liveness not desirable for Cloudify Manager container
58 enabled: false
59
60readiness:
61 initialDelaySeconds: 30
62 periodSeconds: 30
63 path: /
64 scheme: HTTPS
65
66service:
67 type: ClusterIP
68 name: deployment-handler
69 externalPort: 8443
70 internalPort: 8443
71
72
73# Resource Limit flavor -By Default using small
74flavor: small
75# Segregation for Different environment (Small and Large)
76resources:
77 small:
78 limits:
79 cpu: 2
80 memory: 2Gi
81 requests:
82 cpu: 1
83 memory: 1Gi
84 large:
85 limits:
86 cpu: 4
87 memory: 4Gi
88 requests:
89 cpu: 2
90 memory: 2Gi
91 unlimited: {}
92# Kubernetes namespace for components deployed via Cloudify manager
93# If empty, use the common namespace
94# dcae_ns: "dcae"