[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / pnda / charts / dcae-pnda-mirror / values.yaml
1 # ================================================================================
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 #################################################################
20 global:
21   nodePortPrefixExt: 304
22   readinessImage: onap/oom/readiness:3.0.1
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   persistence: {}
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31
32 repository: pndareg.ctao6.net
33 image: onap/org.onap.dcaegen2.deployments.pnda-mirror-container:6.0.0
34 pullPolicy: Always
35
36 # application configuration
37 # Example:
38 config: {}
39
40 # default number of instances
41 replicaCount: 1
42
43 nodeSelector: {}
44
45 affinity: {}
46
47 # probe configuration parameters
48 liveness:
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
56 readiness:
57   initialDelaySeconds: 15
58   periodSeconds: 10
59
60 service:
61   type: NodePort
62   portName: dcae-pnda-mirror
63   nodePort: "00"
64   externalPort: 80
65   internalPort: 80
66
67 ## Persist data to a persitent volume
68 persistence:
69   enabled: false
70
71 ingress:
72   enabled: false
73
74 resources: {}