jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs |
| 2 | # Copyright © 2017, 2021 Bell Canada |
jhh | 0d1c0e8 | 2022-04-08 14:36:15 -0500 | [diff] [blame] | 3 | # Modifications Copyright © 2018-2022 AT&T Intellectual Property |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | ################################################################# |
| 18 | # Global configuration defaults. |
| 19 | ################################################################# |
| 20 | global: |
| 21 | nodePortPrefix: 302 |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 22 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 23 | ################################################################# |
Krzysztof Opasiak | 68b1c92 | 2020-03-26 23:59:36 +0100 | [diff] [blame] | 24 | # Secrets metaconfig |
| 25 | ################################################################# |
| 26 | secrets: |
| 27 | - uid: db-secret |
| 28 | type: basicAuth |
| 29 | externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}' |
| 30 | login: '{{ .Values.db.user }}' |
| 31 | password: '{{ .Values.db.password }}' |
| 32 | passwordPolicy: required |
jhh | 0d1c0e8 | 2022-04-08 14:36:15 -0500 | [diff] [blame] | 33 | - uid: telemetry-creds |
| 34 | type: basicAuth |
| 35 | externalSecret: '{{ tpl (default "" .Values.telemetry.credsExternalSecret) . }}' |
| 36 | login: '{{ .Values.telemetry.user }}' |
| 37 | password: '{{ .Values.telemetry.password }}' |
| 38 | passwordPolicy: required |
Krzysztof Opasiak | 68b1c92 | 2020-03-26 23:59:36 +0100 | [diff] [blame] | 39 | |
| 40 | ################################################################# |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 41 | # Application configuration defaults. |
| 42 | ################################################################# |
| 43 | # application image |
saul.gill | 5e61140 | 2023-03-02 11:49:23 +0000 | [diff] [blame] | 44 | image: onap/policy-pdpd-cl:1.12.1 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 45 | pullPolicy: Always |
| 46 | |
| 47 | # flag to enable debugging - application support required |
| 48 | debugEnabled: false |
| 49 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 50 | # default number of instances |
Jorge Hernandez | d9f7545 | 2018-06-04 11:18:52 -0500 | [diff] [blame] | 51 | replicaCount: 1 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 52 | |
| 53 | nodeSelector: {} |
| 54 | |
| 55 | affinity: {} |
| 56 | |
| 57 | # probe configuration parameters |
| 58 | liveness: |
Jorge Hernandez | 432aa31 | 2018-06-04 18:20:43 -0500 | [diff] [blame] | 59 | initialDelaySeconds: 180 |
jhh | 0d1c0e8 | 2022-04-08 14:36:15 -0500 | [diff] [blame] | 60 | periodSeconds: 60 |
| 61 | timeoutSeconds: 10 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 62 | # necessary to disable liveness probe when setting breakpoints |
| 63 | # in debugger so K8s doesn't restart unresponsive container |
Jorge Hernandez | 328eadb | 2018-05-15 07:52:21 -0500 | [diff] [blame] | 64 | enabled: true |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 65 | |
| 66 | readiness: |
Jorge Hernandez | d9f7545 | 2018-06-04 11:18:52 -0500 | [diff] [blame] | 67 | initialDelaySeconds: 60 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 68 | periodSeconds: 10 |
| 69 | |
| 70 | service: |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 71 | type: ClusterIP |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 72 | name: policy-drools-pdp |
amatthews | 736bf37 | 2021-12-14 16:04:15 +0000 | [diff] [blame] | 73 | portName: http |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 74 | internalPort: 6969 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 75 | externalPort: 6969 |
| 76 | nodePort: 17 |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 77 | internalPort2: 9696 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 78 | externalPort2: 9696 |
| 79 | nodePort2: 21 |
| 80 | |
| 81 | ingress: |
| 82 | enabled: false |
| 83 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 84 | # Default installation values to be overridden |
| 85 | |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 86 | certInitializer: |
| 87 | nameOverride: policy-drools-pdp-cert-initializer |
| 88 | aafDeployFqi: deployer@people.osaaf.org |
| 89 | aafDeployPass: demo123456! |
| 90 | fqdn: policy |
| 91 | fqi: policy@policy.onap.org |
| 92 | public_fqdn: policy.onap.org |
| 93 | cadi_latitude: "0.0" |
| 94 | cadi_longitude: "0.0" |
| 95 | credsPath: /opt/app/osaaf/local |
| 96 | app_ns: org.osaaf.aaf |
jhh | 32367fc | 2021-03-10 13:10:47 -0600 | [diff] [blame] | 97 | uid: 100 |
| 98 | gid: 101 |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 99 | aaf_add_config: > |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 100 | echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" >> {{ .Values.credsPath }}/.ci; |
| 101 | echo "export KEYSTORE_PASSWD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci; |
jhh | 32367fc | 2021-03-10 13:10:47 -0600 | [diff] [blame] | 102 | echo "export CADI_KEYFILE='{{ .Values.credsPath }}/org.onap.policy.keyfile'" >> {{ .Values.credsPath }}/.ci; |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 103 | chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }}); |
| 104 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 105 | server: |
jhh | ed6839f | 2020-05-08 12:28:27 -0500 | [diff] [blame] | 106 | jvmOpts: -server -XshowSettings:vm |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 107 | |
| 108 | aaf: |
jhh | 8534fea | 2019-09-20 14:35:20 -0500 | [diff] [blame] | 109 | enabled: "false" |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 110 | |
| 111 | keystore: |
| 112 | password: Pol1cy_0nap |
| 113 | |
| 114 | truststore: |
| 115 | password: Pol1cy_0nap |
| 116 | |
| 117 | telemetry: |
| 118 | user: demo@people.osaaf.org |
| 119 | password: demo123456! |
| 120 | |
| 121 | nexus: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 122 | name: policy-nexus |
| 123 | port: 8081 |
jhh | 8534fea | 2019-09-20 14:35:20 -0500 | [diff] [blame] | 124 | user: admin |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 125 | password: admin123 |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 126 | offline: true |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 127 | |
| 128 | db: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 129 | name: policy-mariadb |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 130 | user: policy_user |
| 131 | password: policy_user |
| 132 | |
| 133 | pap: |
adheli.tavares | f3656cd | 2021-11-10 14:54:32 +0000 | [diff] [blame] | 134 | user: policyadmin |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 135 | password: zb!XztG34 |
| 136 | |
| 137 | pdp: |
| 138 | user: healthcheck |
| 139 | password: zb!XztG34 |
| 140 | |
jhh | df5484e | 2020-04-06 15:08:35 -0500 | [diff] [blame] | 141 | papl: |
| 142 | user: testpap |
| 143 | password: alpha123 |
| 144 | |
| 145 | pdpl: |
| 146 | user: testpdp |
| 147 | password: alpha123 |
| 148 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 149 | aai: |
| 150 | user: policy@policy.onap.org |
| 151 | password: demo123456! |
| 152 | |
| 153 | so: |
| 154 | user: InfraPortalClient |
| 155 | password: password1$ |
| 156 | |
| 157 | vfc: |
| 158 | user: |
| 159 | password: |
| 160 | |
| 161 | sdnc: |
| 162 | user: admin |
| 163 | password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
| 164 | |
| 165 | dmaap: |
| 166 | brmsgw: |
| 167 | key: |
| 168 | password: |
| 169 | pap: |
| 170 | key: |
| 171 | password: |
| 172 | |
Rashmi Pujar | 3cfa4cc | 2019-10-17 16:05:50 -0400 | [diff] [blame] | 173 | cds: |
| 174 | grpc: |
| 175 | user: ccsdkapps |
| 176 | password: ccsdkapps |
| 177 | svcName: cds-blueprints-processor-grpc |
| 178 | svcPort: 9111 |
| 179 | |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 180 | # Resource Limit flavor -By Default using small |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 181 | # Segregation for Different environment (small, large, or unlimited) |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 182 | flavor: small |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 183 | resources: |
| 184 | small: |
| 185 | limits: |
| 186 | cpu: 1 |
| 187 | memory: 4Gi |
| 188 | requests: |
| 189 | cpu: 100m |
| 190 | memory: 1Gi |
| 191 | large: |
| 192 | limits: |
| 193 | cpu: 2 |
| 194 | memory: 8Gi |
| 195 | requests: |
| 196 | cpu: 200m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 197 | memory: 2Gi |
Pamela Dragosh | 54048d3 | 2018-11-09 07:09:41 -0500 | [diff] [blame] | 198 | unlimited: {} |
farida azmy | c117837 | 2021-04-11 12:55:33 +0200 | [diff] [blame] | 199 | |
| 200 | #Pods Service Account |
| 201 | serviceAccount: |
| 202 | nameOverride: policy-drools-pdp |
| 203 | roles: |
| 204 | - read |
jhh | 0d1c0e8 | 2022-04-08 14:36:15 -0500 | [diff] [blame] | 205 | |
jhh | 0d1c0e8 | 2022-04-08 14:36:15 -0500 | [diff] [blame] | 206 | metrics: |
| 207 | serviceMonitor: |
| 208 | # Override the labels based on the Prometheus config parameter: serviceMonitorSelector. |
| 209 | # The default operator for prometheus enforces the below label. |
| 210 | labels: |
| 211 | release: prometheus |
| 212 | enabled: true |
| 213 | port: policy-drools-pdp-9696 |
| 214 | interval: 60s |
| 215 | isHttps: true |
| 216 | basicAuth: |
| 217 | enabled: true |
| 218 | externalSecretNameSuffix: policy-drools-pdp-telemetry-creds |
| 219 | externalSecretUserKey: login |
| 220 | externalSecretPasswordKey: password |
| 221 | selector: |
| 222 | app: '{{ include "common.name" . }}' |
| 223 | chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' |
| 224 | release: '{{ include "common.release" . }}' |
| 225 | heritage: '{{ .Release.Service }}' |