0d2ff545fe59d4427f0bb0d7cb516c4962add35b
[oom.git] / kubernetes / policy / 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   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24   ubuntuImage: ubuntu:16.04
25   mariadb:
26     nameOverride: policydb
27   pdp:
28     nameOverride: pdp
29   pap:
30     nameOverride: pap
31   drools:
32     nameOverride: drools
33   brmwgw:
34     nameOverride: brmsgw
35   nexus:
36     nameOverride: nexus
37
38 #################################################################
39 # Application configuration defaults.
40 #################################################################
41 # application image
42 repository: nexus3.onap.org:10001
43 image: onap/policy-pe:1.3-SNAPSHOT-latest
44 pullPolicy: Always
45
46 subChartsOnly:
47   enabled: true
48
49 nameOverride: pap
50
51 pdp:
52   nameOverride: pdp
53 mariadb:
54   nameOverride: policydb
55 drools:
56   nameOverride: drools
57 brmwgw:
58   nameOverride: brmsgw
59 nexus:
60   nameOverride: nexus
61
62 # flag to enable debugging - application support required
63 debugEnabled: false
64
65 # application configuration
66 config:
67   preloadPolicies: false
68   pdpPort: 8081
69
70 # default number of instances
71 replicaCount: 1
72
73 nodeSelector: {}
74
75 affinity: {}
76
77 # probe configuration parameters
78 liveness:
79   initialDelaySeconds: 10
80   periodSeconds: 10
81   # necessary to disable liveness probe when setting breakpoints
82   # in debugger so K8s doesn't restart unresponsive container
83   enabled: true
84
85 readiness:
86   initialDelaySeconds: 10
87   periodSeconds: 10
88
89 service:
90   type: NodePort
91   name: pap
92   portName: pap
93   externalPort: 8443
94   nodePort: 19
95   externalPort2: 9091
96   nodePort2: 18
97
98 ingress:
99   enabled: false
100
101 resources: {}
102   # We usually recommend not to specify default resources and to leave this as a conscious
103   # choice for the user. This also increases chances charts run on environments with little
104   # resources, such as Minikube. If you do want to specify resources, uncomment the following
105   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
106   #
107   # Example:
108   # Configure resource requests and limits
109   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
110   # Minimum memory for development is 2 CPU cores and 4GB memory
111   # Minimum memory for production is 4 CPU cores and 8GB memory
112 #resources:
113 #  limits:
114 #    cpu: 2
115 #    memory: 4Gi
116 #  requests:
117 #    cpu: 2
118 #    memory: 4Gi