blob: 3b15c551189aea3be8d59b00a14cf2bfc9a2cca1 [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
23 readinessRepository: oomk8s
24 readinessImage: readiness-check:2.0.0
25 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
27 tlsRepository: nexus3.onap.org:10001
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000028 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:1.0.3
Jack Lucas332b5e72019-02-06 16:03:13 -050029 consulLoaderRepository: nexus3.onap.org:10001
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000030 consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.0.0
Jack Lucas332b5e72019-02-06 16:03:13 -050031 repositoryCred:
32 user: docker
33 password: docker
34
35config:
36 logstashServiceName: log-ls
37 logstashPort: 5044
38 # Addresses of other ONAP entities
39 address:
40 consul:
41 host: consul-server
42 port: 8500
Vijay Venkatesh Kumar4112d5c2019-05-07 20:34:39 +000043 policy_xacml_pdp: policy-xacml-pdp
Jack Lucas332b5e72019-02-06 16:03:13 -050044
45#################################################################
46# Application configuration defaults.
47#################################################################
48# application image
49repository: nexus3.onap.org:10001
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000050image: onap/org.onap.dcaegen2.platform.policy-handler:5.0.0
Jack Lucas332b5e72019-02-06 16:03:13 -050051pullPolicy: Always
52
53# probe configuration parameters
54liveness:
55 initialDelaySeconds: 10
56 periodSeconds: 10
57 # necessary to disable liveness probe when setting breakpoints
58 # in debugger so K8s doesn't restart unresponsive container
59 # liveness not desirable for Cloudify Manager container
60 enabled: false
61
62readiness:
63 initialDelaySeconds: 60
64 periodSeconds: 300
65 path: /healthcheck
66 scheme: HTTP
67
68service:
69 type: ClusterIP
70 name: policy-handler
71 externalPort: 25577
72 internalPort: 25577
73
74
75# 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: {}
94# Kubernetes namespace for components deployed via Cloudify manager
95# If empty, use the common namespace
96# dcae_ns: "dcae"