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