vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Durgpal | 7ad4069 | 2018-08-03 07:28:36 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 21 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.0 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 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 |
| 43 | repository: nexus3.onap.org:10001 |
Gary Wu | 72901cd | 2018-11-15 18:27:40 -0800 | [diff] [blame] | 44 | image: onap/policy-pe:1.3.4 |
kerenj | 3b697f6 | 2017-08-23 11:21:21 +0000 | [diff] [blame] | 45 | pullPolicy: Always |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 46 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 47 | subChartsOnly: |
| 48 | enabled: true |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 49 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 50 | nameOverride: pap |
| 51 | |
| 52 | pdp: |
| 53 | nameOverride: pdp |
| 54 | mariadb: |
| 55 | nameOverride: policydb |
| 56 | drools: |
| 57 | nameOverride: drools |
| 58 | brmwgw: |
| 59 | nameOverride: brmsgw |
| 60 | nexus: |
| 61 | nameOverride: nexus |
| 62 | |
| 63 | # flag to enable debugging - application support required |
| 64 | debugEnabled: false |
| 65 | |
| 66 | # application configuration |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 67 | config: |
Jorge Hernandez | 823691f | 2018-04-30 19:53:29 -0500 | [diff] [blame] | 68 | preloadPolicies: false |
mayankg2703 | c798546 | 2018-03-29 14:24:23 +0000 | [diff] [blame] | 69 | pdpPort: 8081 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 70 | |
| 71 | # default number of instances |
| 72 | replicaCount: 1 |
| 73 | |
| 74 | nodeSelector: {} |
| 75 | |
| 76 | affinity: {} |
| 77 | |
| 78 | # probe configuration parameters |
| 79 | liveness: |
| 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 | |
| 86 | readiness: |
| 87 | initialDelaySeconds: 10 |
| 88 | periodSeconds: 10 |
| 89 | |
| 90 | service: |
| 91 | type: NodePort |
| 92 | name: pap |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 93 | portName: pap |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 94 | externalPort: 8443 |
| 95 | nodePort: 19 |
| 96 | externalPort2: 9091 |
| 97 | nodePort2: 18 |
| 98 | |
| 99 | ingress: |
| 100 | enabled: false |
| 101 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 102 | # Resource Limit flavor -By Default using small |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 103 | flavor: small |
| 104 | # Segregation for Different environment (Small and Large) |
| 105 | resources: |
| 106 | small: |
| 107 | limits: |
| 108 | cpu: 1 |
| 109 | memory: 4Gi |
| 110 | requests: |
| 111 | cpu: 10m |
| 112 | memory: 1Gi |
| 113 | large: |
| 114 | limits: |
| 115 | cpu: 2 |
| 116 | memory: 8Gi |
| 117 | requests: |
| 118 | cpu: 20m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 119 | memory: 2Gi |
| 120 | unlimited: {} |