blob: 7e340db62845b99f03577c5a5a67eed5ac24c96c [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
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040034secrets:
35 - uid: 'cm-pass'
36 type: password
37 externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
38 password: '{{ .Values.config.cloudifyManagerPassword }}'
39 policy: required
40
Jack Lucas332b5e72019-02-06 16:03:13 -050041config:
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040042 cloudifyManagerPassword: "override me"
Jack Lucas332b5e72019-02-06 16:03:13 -050043 logstashServiceName: log-ls
44 logstashPort: 5044
45 # Addresses of other ONAP entities
46 address:
47 consul:
48 host: consul-server
49 port: 8500
50
51#################################################################
52# Application configuration defaults.
53#################################################################
54# application image
55repository: nexus3.onap.org:10001
vv770d2ec85e32020-09-21 20:16:16 +000056image: onap/org.onap.dcaegen2.platform.deployment-handler:4.4.1
Jack Lucas332b5e72019-02-06 16:03:13 -050057pullPolicy: Always
58
59# probe configuration parameters
60liveness:
61 initialDelaySeconds: 10
62 periodSeconds: 10
63 # necessary to disable liveness probe when setting breakpoints
64 # in debugger so K8s doesn't restart unresponsive container
65 # liveness not desirable for Cloudify Manager container
66 enabled: false
67
68readiness:
69 initialDelaySeconds: 30
70 periodSeconds: 30
71 path: /
72 scheme: HTTPS
73
74service:
75 type: ClusterIP
76 name: deployment-handler
77 externalPort: 8443
78 internalPort: 8443
79
80
81# Resource Limit flavor -By Default using small
82flavor: small
83# Segregation for Different environment (Small and Large)
84resources:
85 small:
86 limits:
87 cpu: 2
88 memory: 2Gi
89 requests:
90 cpu: 1
91 memory: 1Gi
92 large:
93 limits:
94 cpu: 4
95 memory: 4Gi
96 requests:
97 cpu: 2
98 memory: 2Gi
99 unlimited: {}
100# Kubernetes namespace for components deployed via Cloudify manager
101# If empty, use the common namespace
102# dcae_ns: "dcae"