blob: 10480a00e3603cfbf9b9bf08acbd81a343fac562 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
mayankg2703ced85142018-03-20 05:42:53 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:1.0.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 ubuntuImage: ubuntu:16.04
26 mariadb:
27 nameOverride: policydb
28 pdp:
29 nameOverride: pdp
30 pap:
31 nameOverride: pap
32 drools:
33 nameOverride: drools
34 brmwgw:
35 nameOverride: brmsgw
36 nexus:
37 nameOverride: nexus
38
39#################################################################
40# Application configuration defaults.
41#################################################################
42# application image
43repository: nexus3.onap.org:10001
44image: onap/policy-pe:1.2-SNAPSHOT-latest
kerenj3b697f62017-08-23 11:21:21 +000045pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050046
mayankg2703ced85142018-03-20 05:42:53 +000047subChartsOnly:
48 enabled: true
BorislavG5f3b6192018-03-25 18:12:38 +030049
mayankg2703ced85142018-03-20 05:42:53 +000050nameOverride: pap
51
52pdp:
53 nameOverride: pdp
54mariadb:
55 nameOverride: policydb
56drools:
57 nameOverride: drools
58brmwgw:
59 nameOverride: brmsgw
60nexus:
61 nameOverride: nexus
62
63# flag to enable debugging - application support required
64debugEnabled: false
65
66# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030067config:
mayankg2703ced85142018-03-20 05:42:53 +000068 preloadPolicies: true
mayankg2703c7985462018-03-29 14:24:23 +000069 pdpPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000070
71# default number of instances
72replicaCount: 1
73
74nodeSelector: {}
75
76affinity: {}
77
78# probe configuration parameters
79liveness:
80 initialDelaySeconds: 10
81 periodSeconds: 10
82 # necessary to disable liveness probe when setting breakpoints
83 # in debugger so K8s doesn't restart unresponsive container
84 enabled: true
85
86readiness:
87 initialDelaySeconds: 10
88 periodSeconds: 10
89
90service:
91 type: NodePort
92 name: pap
93 externalPort: 8443
94 nodePort: 19
95 externalPort2: 9091
96 nodePort2: 18
97
98ingress:
99 enabled: false
100
101resources: {}
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