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