[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / platform / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T
3 # Modifications Copyright © 2020 Nokia
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
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20
21 global:
22   nodePortPrefix: 302
23   # Readiness image
24   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.2
26   # Ubuntu Init image
27   ubuntuInitRepository: docker.io
28   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
29   # Logging image
30   loggingRepository: docker.elastic.co
31   loggingImage: beats/filebeat:5.5.0
32   # BusyBox image
33   busyboxRepository: docker.io
34   busyboxImage: library/busybox:1.31
35   persistence:
36     enabled: true
37   # Standard OOM
38   pullPolicy: "Always"
39   repository: "nexus3.onap.org:10001"
40
41   # Use Local
42   #pullPolicy: IfNotPresent
43   #repository: "nexus3.onap.org:10003"
44
45   cmpv2Enabled: true
46   addTestingComponents: false
47
48   certService:
49     certServiceClient:
50       secret:
51         name: oom-cert-service-client-tls-secret
52
53 #################################################################
54 # Application configuration defaults.
55 #################################################################
56
57 flavor: small
58 # default number of instances
59 replicaCount: 1
60
61 nodeSelector: {}
62
63 affinity: {}
64
65 # probe configuration parameters
66 liveness:
67   initialDelaySeconds: 350
68   periodSeconds: 10
69   # necessary to disable liveness probe when setting breakpoints
70   # in debugger so K8s doesn't restart unresponsive container
71   enabled: true
72
73 readiness:
74   initialDelaySeconds: 150
75   periodSeconds: 10
76
77 persistence: {}
78
79 resources: {}