mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (C) 2018 Ericsson. All rights reserved. |
jhh | 999c224 | 2021-02-24 12:10:02 -0600 | [diff] [blame] | 3 | # Modifications Copyright (C) 2019-2021 AT&T Intellectual Property. |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [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 | # SPDX-License-Identifier: Apache-2.0 |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | ################################################################# |
| 21 | # Global configuration defaults. |
| 22 | ################################################################# |
| 23 | global: |
| 24 | nodePortPrefix: 302 |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 25 | aafEnabled: true |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 26 | persistence: {} |
| 27 | |
| 28 | ################################################################# |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 29 | # Secrets metaconfig |
| 30 | ################################################################# |
| 31 | secrets: |
| 32 | - uid: restserver-creds |
| 33 | type: basicAuth |
| 34 | externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}' |
| 35 | login: '{{ .Values.restServer.user }}' |
| 36 | password: '{{ .Values.restServer.password }}' |
| 37 | - uid: truststore-pass |
| 38 | type: password |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 39 | externalSecret: '{{ tpl (default "" .Values.certStores.trustStorePasswordExternalSecret) . }}' |
| 40 | password: '{{ .Values.certStores.trustStorePassword }}' |
| 41 | passwordPolicy: required |
| 42 | - uid: keystore-pass |
| 43 | type: password |
| 44 | externalSecret: '{{ tpl (default "" .Values.certStores.keyStorePasswordExternalSecret) . }}' |
| 45 | password: '{{ .Values.certStores.keyStorePassword }}' |
| 46 | passwordPolicy: required |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 47 | |
| 48 | ################################################################# |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 49 | # Application configuration defaults. |
| 50 | ################################################################# |
| 51 | # application image |
jhh | 2a5d1bb | 2022-05-04 13:44:26 -0500 | [diff] [blame] | 52 | image: onap/policy-apex-pdp:2.7.3 |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 53 | pullPolicy: Always |
| 54 | |
| 55 | # flag to enable debugging - application support required |
| 56 | debugEnabled: false |
| 57 | |
| 58 | # application configuration |
| 59 | |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 60 | restServer: |
| 61 | user: healthcheck |
| 62 | password: zb!XztG34 |
| 63 | truststore: |
| 64 | password: Pol1cy_0nap |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 65 | certStores: |
| 66 | keyStorePassword: Pol1cy_0nap |
| 67 | trustStorePassword: Pol1cy_0nap |
| 68 | |
| 69 | certInitializer: |
| 70 | nameOverride: policy-apex-pdp-cert-initializer |
| 71 | aafDeployFqi: deployer@people.osaaf.org |
| 72 | aafDeployPass: demo123456! |
| 73 | fqdn: policy |
| 74 | fqi: policy@policy.onap.org |
| 75 | public_fqdn: policy.onap.org |
| 76 | cadi_latitude: "0.0" |
| 77 | cadi_longitude: "0.0" |
| 78 | credsPath: /opt/app/osaaf/local |
| 79 | app_ns: org.osaaf.aaf |
| 80 | uid: 101 |
| 81 | gid: 102 |
| 82 | aaf_add_config: > |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 83 | echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" >> {{ .Values.credsPath }}/.ci; |
| 84 | echo "export KEYSTORE_PASSWORD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci; |
| 85 | chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }}); |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 86 | |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 87 | # default number of instances |
| 88 | replicaCount: 1 |
| 89 | |
| 90 | nodeSelector: {} |
| 91 | |
| 92 | affinity: {} |
| 93 | |
| 94 | # probe configuration parameters |
| 95 | liveness: |
| 96 | initialDelaySeconds: 20 |
| 97 | periodSeconds: 10 |
| 98 | # necessary to disable liveness probe when setting breakpoints |
| 99 | # in debugger so K8s doesn't restart unresponsive container |
| 100 | enabled: true |
| 101 | |
| 102 | readiness: |
| 103 | initialDelaySeconds: 20 |
| 104 | periodSeconds: 10 |
| 105 | |
| 106 | service: |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 107 | type: ClusterIP |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 108 | name: policy-apex-pdp |
| 109 | portName: policy-apex-pdp |
a.sreekumar | 7f4efaf | 2019-04-16 16:24:01 +0000 | [diff] [blame] | 110 | externalPort: 6969 |
jhh | 59ce22d | 2019-05-14 17:59:36 -0500 | [diff] [blame] | 111 | internalPort: 6969 |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 112 | nodePort: 37 |
| 113 | |
| 114 | ingress: |
| 115 | enabled: false |
| 116 | |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 117 | # Resource Limit flavor -By Default using small |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 118 | # Segregation for Different environment (Small and Large) |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 119 | flavor: small |
vaibhavjayas | 4136f5d | 2018-08-17 07:01:05 +0000 | [diff] [blame] | 120 | resources: |
| 121 | small: |
| 122 | limits: |
| 123 | cpu: 1 |
| 124 | memory: 4Gi |
| 125 | requests: |
| 126 | cpu: 10m |
| 127 | memory: 1Gi |
| 128 | large: |
| 129 | limits: |
| 130 | cpu: 2 |
| 131 | memory: 8Gi |
| 132 | requests: |
| 133 | cpu: 20m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 134 | memory: 2Gi |
Pamela Dragosh | 54048d3 | 2018-11-09 07:09:41 -0500 | [diff] [blame] | 135 | unlimited: {} |
farida azmy | c117837 | 2021-04-11 12:55:33 +0200 | [diff] [blame] | 136 | |
| 137 | #Pods Service Account |
| 138 | serviceAccount: |
| 139 | nameOverride: policy-apex-pdp |
| 140 | roles: |
| 141 | - read |
Rashmi Pujar | a8b0926 | 2022-03-15 21:58:57 -0400 | [diff] [blame] | 142 | |
Rashmi Pujar | a8b0926 | 2022-03-15 21:58:57 -0400 | [diff] [blame] | 143 | metrics: |
| 144 | serviceMonitor: |
| 145 | # Override the labels based on the Prometheus config parameter: serviceMonitorSelector. |
| 146 | # The default operator for prometheus enforces the below label. |
| 147 | labels: |
| 148 | release: prometheus |
| 149 | enabled: true |
| 150 | port: policy-apex-pdp |
| 151 | interval: 60s |
| 152 | isHttps: true |
| 153 | basicAuth: |
| 154 | enabled: true |
| 155 | externalSecretNameSuffix: policy-apex-pdp-restserver-creds |
| 156 | externalSecretUserKey: login |
| 157 | externalSecretPasswordKey: password |
| 158 | selector: |
| 159 | app: '{{ include "common.name" . }}' |
| 160 | chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' |
| 161 | release: '{{ include "common.release" . }}' |
| 162 | heritage: '{{ .Release.Service }}' |