mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Jorge Hernandez | aa5ba98 | 2019-03-25 19:13:39 -0500 | [diff] [blame] | 2 | # Modifications Copyright © 2018-2019 AT&T |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +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 | |
| 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 |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 26 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 27 | ################################################################# |
| 28 | # Application configuration defaults. |
| 29 | ################################################################# |
| 30 | # application image |
| 31 | repository: nexus3.onap.org:10001 |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 32 | image: onap/policy-pdpd-cl:1.5.2 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 33 | pullPolicy: Always |
| 34 | |
| 35 | # flag to enable debugging - application support required |
| 36 | debugEnabled: false |
| 37 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 38 | # default number of instances |
Jorge Hernandez | d9f7545 | 2018-06-04 11:18:52 -0500 | [diff] [blame] | 39 | replicaCount: 1 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 40 | |
| 41 | nodeSelector: {} |
| 42 | |
| 43 | affinity: {} |
| 44 | |
| 45 | # probe configuration parameters |
| 46 | liveness: |
Jorge Hernandez | 432aa31 | 2018-06-04 18:20:43 -0500 | [diff] [blame] | 47 | initialDelaySeconds: 180 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 48 | periodSeconds: 10 |
| 49 | # necessary to disable liveness probe when setting breakpoints |
| 50 | # in debugger so K8s doesn't restart unresponsive container |
Jorge Hernandez | 328eadb | 2018-05-15 07:52:21 -0500 | [diff] [blame] | 51 | enabled: true |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 52 | |
| 53 | readiness: |
Jorge Hernandez | d9f7545 | 2018-06-04 11:18:52 -0500 | [diff] [blame] | 54 | initialDelaySeconds: 60 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 55 | periodSeconds: 10 |
| 56 | |
| 57 | service: |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 58 | type: ClusterIP |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 59 | name: drools |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 60 | portName: drools |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 61 | internalPort: 6969 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 62 | externalPort: 6969 |
| 63 | nodePort: 17 |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 64 | internalPort2: 9696 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 65 | externalPort2: 9696 |
| 66 | nodePort2: 21 |
| 67 | |
| 68 | ingress: |
| 69 | enabled: false |
| 70 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 71 | # Default installation values to be overridden |
| 72 | |
| 73 | server: |
| 74 | jvmOpts: -server -Xms1024m -Xmx2048m |
| 75 | |
| 76 | aaf: |
jhh | 8534fea | 2019-09-20 14:35:20 -0500 | [diff] [blame] | 77 | enabled: "false" |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 78 | |
| 79 | keystore: |
| 80 | password: Pol1cy_0nap |
| 81 | |
| 82 | truststore: |
| 83 | password: Pol1cy_0nap |
| 84 | |
| 85 | telemetry: |
| 86 | user: demo@people.osaaf.org |
| 87 | password: demo123456! |
| 88 | |
| 89 | nexus: |
jhh | 8534fea | 2019-09-20 14:35:20 -0500 | [diff] [blame] | 90 | user: admin |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 91 | password: admin123 |
| 92 | port: 8081 |
| 93 | |
| 94 | db: |
| 95 | user: policy_user |
| 96 | password: policy_user |
| 97 | |
| 98 | pap: |
| 99 | user: healthcheck |
| 100 | password: zb!XztG34 |
| 101 | |
| 102 | pdp: |
| 103 | user: healthcheck |
| 104 | password: zb!XztG34 |
| 105 | |
| 106 | aai: |
| 107 | user: policy@policy.onap.org |
| 108 | password: demo123456! |
| 109 | |
| 110 | so: |
| 111 | user: InfraPortalClient |
| 112 | password: password1$ |
| 113 | |
| 114 | vfc: |
| 115 | user: |
| 116 | password: |
| 117 | |
| 118 | sdnc: |
| 119 | user: admin |
| 120 | password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
| 121 | |
| 122 | dmaap: |
| 123 | brmsgw: |
| 124 | key: |
| 125 | password: |
| 126 | pap: |
| 127 | key: |
| 128 | password: |
| 129 | |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 130 | # Resource Limit flavor -By Default using small |
| 131 | flavor: small |
| 132 | # Segregation for Different environment (Small and Large) |
| 133 | resources: |
| 134 | small: |
| 135 | limits: |
| 136 | cpu: 1 |
| 137 | memory: 4Gi |
| 138 | requests: |
| 139 | cpu: 100m |
| 140 | memory: 1Gi |
| 141 | large: |
| 142 | limits: |
| 143 | cpu: 2 |
| 144 | memory: 8Gi |
| 145 | requests: |
| 146 | cpu: 200m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 147 | memory: 2Gi |
Pamela Dragosh | 54048d3 | 2018-11-09 07:09:41 -0500 | [diff] [blame] | 148 | unlimited: {} |