200821c434fd806e3ccb1eed3dcefbaa5241742a
[oom.git] / kubernetes / vnfsdk / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   repository: nexus3.onap.org:10001
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/vnfsdk/refrepo:1.1.1
32 pullPolicy: Always
33
34 postgres:
35   nameOverride: vnfsdk-postgres
36   service:
37     name: vnfsdk-dbset
38     name2: vnfsdk-dbpri
39     name3: vnfsdk-dbrep
40   nfsprovisionerPrefix: vnfsdk
41   persistence:
42     mountSubPath: vnfsdk/data
43     mountInitPath: vnfsdk
44     enabled: true
45   disableNfsProvisioner: true
46   container:
47     name:
48       primary: vnfsdk-dbpri
49       replica: vnfsdk-dbrep
50
51 # flag to enable debugging - application support required
52 debugEnabled: false
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65
66 readiness:
67   initialDelaySeconds: 10
68   periodSeconds: 10
69
70 service:
71   type: NodePort
72   name: refrepo
73   portName: refrepo
74   nodePort: 97
75   internalPort: 8702
76
77 ingress:
78   enabled: false