blob: 34de52a7bea2b0de3461f542c4c99c2fbcbd840d [file] [log] [blame]
Donald Hunter3d8330a2018-09-14 13:48:08 +01001# ================================================================================
2# Copyright (c) 2018 Cisco Systems. All rights reserved.
3# ================================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# ============LICENSE_END=========================================================
16
17#################################################################
18# Global configuration defaults.
19#################################################################
20global:
Julien Barbot00520bc2018-11-13 19:08:56 +010021 nodePortPrefixExt: 304
Donald Hunter3d8330a2018-09-14 13:48:08 +010022 readinessRepository: oomk8s
23 readinessImage: readiness-check:2.0.0
24 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26 persistence: {}
27
28#################################################################
29# Application configuration defaults.
30#################################################################
31# application image
32
33repository: pndareg.ctao6.net
Julien Barbot62f2d9f2018-11-14 14:04:36 +010034image: onap/org.onap.dcaegen2.deployments.pnda-mirror-container:5.0.0
Donald Hunter3d8330a2018-09-14 13:48:08 +010035pullPolicy: Always
36
37# application configuration
38# Example:
39config: {}
40
41# default number of instances
42replicaCount: 1
43
44nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
50 initialDelaySeconds: 60
51 periodSeconds: 10
52 timeoutSeconds: 10
53 # necessary to disable liveness probe when setting breakpoints
54 # in debugger so K8s doesn't restart unresponsive container
55 enabled: true
56
57readiness:
58 initialDelaySeconds: 15
59 periodSeconds: 10
60
61service:
Julien Barbot00520bc2018-11-13 19:08:56 +010062 type: NodePort
63 portName: dcae-pnda-mirror
64 nodePort: "00"
Donald Hunter3d8330a2018-09-14 13:48:08 +010065 externalPort: 80
66 internalPort: 80
67
68## Persist data to a persitent volume
69persistence:
70 enabled: false
71
72ingress:
73 enabled: false
74
75resources: {}