blob: dae88e6d6c91c6eecb44039f198e5fa56d5cfe40 [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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020022 readinessImage: onap/oom/readiness:3.0.1
Donald Hunter3d8330a2018-09-14 13:48:08 +010023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 persistence: {}
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31
32repository: pndareg.ctao6.net
Sylvain Desbureaux1ef4caf2020-04-02 14:08:50 +020033image: onap/org.onap.dcaegen2.deployments.pnda-mirror-container:6.0.0
Donald Hunter3d8330a2018-09-14 13:48:08 +010034pullPolicy: Always
35
36# application configuration
37# Example:
38config: {}
39
40# default number of instances
41replicaCount: 1
42
43nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
49 initialDelaySeconds: 60
50 periodSeconds: 10
51 timeoutSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 enabled: true
55
56readiness:
57 initialDelaySeconds: 15
58 periodSeconds: 10
59
60service:
Julien Barbot00520bc2018-11-13 19:08:56 +010061 type: NodePort
62 portName: dcae-pnda-mirror
63 nodePort: "00"
Donald Hunter3d8330a2018-09-14 13:48:08 +010064 externalPort: 80
65 internalPort: 80
66
67## Persist data to a persitent volume
68persistence:
69 enabled: false
70
71ingress:
72 enabled: false
73
74resources: {}