blob: 0d2ff545fe59d4427f0bb0d7cb516c4962add35b [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
37
38#################################################################
39# Application configuration defaults.
40#################################################################
41# application image
42repository: nexus3.onap.org:10001
Jorge Hernandezcb498882018-07-09 11:35:38 -050043image: onap/policy-pe:1.3-SNAPSHOT-latest
kerenj3b697f62017-08-23 11:21:21 +000044pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050045
mayankg2703ced85142018-03-20 05:42:53 +000046subChartsOnly:
47 enabled: true
BorislavG5f3b6192018-03-25 18:12:38 +030048
mayankg2703ced85142018-03-20 05:42:53 +000049nameOverride: pap
50
51pdp:
52 nameOverride: pdp
53mariadb:
54 nameOverride: policydb
55drools:
56 nameOverride: drools
57brmwgw:
58 nameOverride: brmsgw
59nexus:
60 nameOverride: nexus
61
62# flag to enable debugging - application support required
63debugEnabled: false
64
65# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030066config:
Jorge Hernandez823691f2018-04-30 19:53:29 -050067 preloadPolicies: false
mayankg2703c7985462018-03-29 14:24:23 +000068 pdpPort: 8081
mayankg2703ced85142018-03-20 05:42:53 +000069
70# default number of instances
71replicaCount: 1
72
73nodeSelector: {}
74
75affinity: {}
76
77# probe configuration parameters
78liveness:
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
85readiness:
86 initialDelaySeconds: 10
87 periodSeconds: 10
88
89service:
90 type: NodePort
91 name: pap
BorislavG1ffbd992018-04-24 07:56:27 +000092 portName: pap
mayankg2703ced85142018-03-20 05:42:53 +000093 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