blob: a5cdc043a73c8753cb0ad18aef9fd5b12cc5827a [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
mayankg2703ced85142018-03-20 05:42:53 +000020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
mayankg2703ced85142018-03-20 05:42:53 +000022 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
mmis95971132018-07-17 00:13:13 +010037 policy-apex-pdp:
38 nameOverride: policy-apex-pdp
mayankg2703ced85142018-03-20 05:42:53 +000039
40#################################################################
41# Application configuration defaults.
42#################################################################
43# application image
44repository: nexus3.onap.org:10001
Jorge Hernandezcb498882018-07-09 11:35:38 -050045image: onap/policy-pe:1.3-SNAPSHOT-latest
kerenj3b697f62017-08-23 11:21:21 +000046pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050047
mayankg2703ced85142018-03-20 05:42:53 +000048subChartsOnly:
49 enabled: true
BorislavG5f3b6192018-03-25 18:12:38 +030050
mayankg2703ced85142018-03-20 05:42:53 +000051nameOverride: pap
52
53pdp:
54 nameOverride: pdp
55mariadb:
56 nameOverride: policydb
57drools:
58 nameOverride: drools
59brmwgw:
60 nameOverride: brmsgw
61nexus:
62 nameOverride: nexus
mmis95971132018-07-17 00:13:13 +010063policy-apex-pdp:
64 nameOverride: policy-apex-pdp
mayankg2703ced85142018-03-20 05:42:53 +000065
66# flag to enable debugging - application support required
67debugEnabled: false
68
69# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030070config:
Jorge Hernandez823691f2018-04-30 19:53:29 -050071 preloadPolicies: false
mayankg2703c7985462018-03-29 14:24:23 +000072 pdpPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000073
74# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
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
89readiness:
90 initialDelaySeconds: 10
91 periodSeconds: 10
92
93service:
94 type: NodePort
95 name: pap
BorislavG1ffbd992018-04-24 07:56:27 +000096 portName: pap
mayankg2703ced85142018-03-20 05:42:53 +000097 externalPort: 8443
98 nodePort: 19
99 externalPort2: 9091
100 nodePort2: 18
101
102ingress:
103 enabled: false
104
105resources: {}
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