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 |
efiacor | fe8f8c9 | 2022-03-15 15:36:48 +0000 | [diff] [blame^] | 3 | # Modifications Copyright © 2021-2022 Nordix Foundation |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +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 | |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 17 | ################################################################# |
| 18 | # Global configuration defaults. |
| 19 | ################################################################# |
| 20 | global: |
| 21 | nodePortPrefix: 302 |
efiacor | fe8f8c9 | 2022-03-15 15:36:48 +0000 | [diff] [blame^] | 22 | kafkaBootstrap: strimzi-kafka-bootstrap |
| 23 | saslMechanism: scram-sha-512 |
| 24 | kafkaInternalPort: 9092 |
| 25 | zkTunnelService: |
| 26 | type: ClusterIP |
| 27 | name: zk-tunnel-svc |
| 28 | portName: tcp-zk-tunnel |
| 29 | internalPort: 2181 |
Sylvain Desbureaux | e5b6ffc | 2021-02-10 12:11:53 +0100 | [diff] [blame] | 30 | |
| 31 | ################################################################# |
| 32 | # AAF part |
| 33 | ################################################################# |
| 34 | certInitializer: |
| 35 | nameOverride: dmaap-mr-cert-initializer |
| 36 | aafDeployFqi: deployer@people.osaaf.org |
| 37 | aafDeployPass: demo123456! |
| 38 | # aafDeployCredsExternalSecret: some secret |
| 39 | fqdn: dmaap-mr |
| 40 | fqi: dmaapmr@mr.dmaap.onap.org |
| 41 | public_fqdn: mr.dmaap.onap.org |
| 42 | cadi_longitude: "-122.26147" |
| 43 | cadi_latitude: "37.78187" |
| 44 | app_ns: org.osaaf.aaf |
| 45 | credsPath: /opt/app/osaaf/local |
| 46 | appMountPath: /appl/dmaapMR1/bundleconfig/etc/sysprops |
| 47 | fqi_namespace: org.onap.dmaap.mr |
| 48 | aaf_add_config: | |
| 49 | cd {{ .Values.credsPath }} |
| 50 | echo "*** change jks password into shell safe one" |
| 51 | export KEYSTORE_PASSWD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1) |
| 52 | keytool -storepasswd -new "${KEYSTORE_PASSWD}" \ |
| 53 | -storepass "${cadi_keystore_password_jks}" \ |
| 54 | -keystore {{ .Values.fqi_namespace }}.jks |
| 55 | echo "*** set key password as same password as jks keystore password" |
| 56 | keytool -keypasswd -new "${KEYSTORE_PASSWD}" \ |
| 57 | -keystore {{ .Values.fqi_namespace }}.jks \ |
| 58 | -keypass "${cadi_keystore_password_jks}" \ |
| 59 | -storepass "${KEYSTORE_PASSWD}" -alias {{ .Values.fqi }} |
| 60 | echo "*** store the passwords" |
| 61 | echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWD}" > mycreds.prop |
| 62 | echo "KEYSTORE_PASSWORD_P12=${cadi_keystore_password_p12}" >> mycreds.prop |
| 63 | echo "TRUSTSTORE_PASSWORD=${cadi_truststore_password}" >> mycreds.prop |
| 64 | echo "*** give ownership of files to the user" |
| 65 | chown -R 1000 . |
| 66 | |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 67 | ################################################################# |
| 68 | # Application configuration defaults. |
| 69 | ################################################################# |
| 70 | # application image |
efiacor | 2716b6e | 2021-12-16 16:03:38 +0000 | [diff] [blame] | 71 | image: onap/dmaap/dmaap-mr:1.3.2 |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 72 | pullPolicy: Always |
| 73 | |
efiacor | fe8f8c9 | 2022-03-15 15:36:48 +0000 | [diff] [blame^] | 74 | secrets: |
| 75 | - uid: mr-kafka-admin-secret |
| 76 | externalSecret: '{{ tpl (default "" .Values.config.jaasConfExternalSecret) . }}' |
| 77 | type: genericKV |
| 78 | envs: |
| 79 | - name: sasl.jaas.config |
| 80 | value: '{{ .Values.config.someConfig }}' |
| 81 | policy: generate |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 82 | |
| 83 | # flag to enable debugging - application support required |
| 84 | debugEnabled: false |
| 85 | |
| 86 | # application configuration |
efiacor | fe8f8c9 | 2022-03-15 15:36:48 +0000 | [diff] [blame^] | 87 | config: |
| 88 | someConfig: blah |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 89 | |
| 90 | # default number of instances |
| 91 | replicaCount: 1 |
| 92 | |
| 93 | nodeSelector: {} |
| 94 | |
| 95 | affinity: {} |
| 96 | |
| 97 | # probe configuration parameters |
| 98 | liveness: |
Sylvain Desbureaux | 8fade99 | 2021-12-06 11:33:11 +0100 | [diff] [blame] | 99 | initialDelaySeconds: 10 |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 100 | periodSeconds: 10 |
su622b | 8b763cd | 2019-10-14 15:37:37 -0400 | [diff] [blame] | 101 | timeoutSeconds: 1 |
Sylvain Desbureaux | 8fade99 | 2021-12-06 11:33:11 +0100 | [diff] [blame] | 102 | successThreshold: 1 |
| 103 | failureThreshold: 3 |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 104 | # necessary to disable liveness probe when setting breakpoints |
| 105 | # in debugger so K8s doesn't restart unresponsive container |
Sylvain Desbureaux | be72888 | 2020-03-06 08:58:23 +0100 | [diff] [blame] | 106 | port: api |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 107 | enabled: true |
| 108 | |
| 109 | readiness: |
Sylvain Desbureaux | 8fade99 | 2021-12-06 11:33:11 +0100 | [diff] [blame] | 110 | initialDelaySeconds: 10 |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 111 | periodSeconds: 10 |
su622b | 8b763cd | 2019-10-14 15:37:37 -0400 | [diff] [blame] | 112 | timeoutSeconds: 1 |
Sylvain Desbureaux | 8fade99 | 2021-12-06 11:33:11 +0100 | [diff] [blame] | 113 | successThreshold: 1 |
| 114 | failureThreshold: 3 |
| 115 | port: api |
| 116 | |
| 117 | startup: |
| 118 | initialDelaySeconds: 10 |
| 119 | periodSeconds: 10 |
| 120 | timeoutSeconds: 1 |
| 121 | successThreshold: 1 |
| 122 | failureThreshold: 70 |
Sylvain Desbureaux | be72888 | 2020-03-06 08:58:23 +0100 | [diff] [blame] | 123 | port: api |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 124 | |
| 125 | service: |
| 126 | type: NodePort |
| 127 | name: message-router |
Sylvain Desbureaux | be72888 | 2020-03-06 08:58:23 +0100 | [diff] [blame] | 128 | both_tls_and_plain: true |
| 129 | msb: |
gummar | a72e6de | 2020-03-12 11:15:56 +0000 | [diff] [blame] | 130 | - port: 3904 |
| 131 | url: "/" |
| 132 | version: "v1" |
| 133 | protocol: "REST" |
| 134 | visualRange: "1" |
Sylvain Desbureaux | be72888 | 2020-03-06 08:58:23 +0100 | [diff] [blame] | 135 | ports: |
| 136 | - name: api |
| 137 | port: 3905 |
| 138 | plain_port: 3904 |
| 139 | port_protocol: http |
| 140 | nodePort: 26 |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 141 | |
su622b | a386565 | 2020-03-25 17:26:51 -0400 | [diff] [blame] | 142 | prometheus: |
| 143 | jmx: |
| 144 | enabled: false |
| 145 | image: solsson/kafka-prometheus-jmx-exporter@sha256 |
| 146 | imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143 |
su622b | a386565 | 2020-03-25 17:26:51 -0400 | [diff] [blame] | 147 | port: 5556 |
| 148 | targetPort: 5555 |
| 149 | |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 150 | ingress: |
| 151 | enabled: false |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 152 | service: |
| 153 | - baseaddr: "mr.api" |
| 154 | name: "message-router" |
| 155 | port: 3905 |
| 156 | config: |
Sylvain Desbureaux | 12b1833 | 2020-05-06 15:21:31 +0200 | [diff] [blame] | 157 | ssl: "redirect" |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 158 | |
pramod | ad6382f | 2018-03-28 22:32:00 +0000 | [diff] [blame] | 159 | |
Prateekinlinux | 9f5dc04 | 2018-09-20 14:08:54 +0000 | [diff] [blame] | 160 | # Resource Limit flavor -By Default using small |
| 161 | flavor: small |
| 162 | # Segregation for Different environment (Small and Large) |
| 163 | resources: |
| 164 | small: |
| 165 | limits: |
| 166 | cpu: 2000m |
| 167 | memory: 4Gi |
| 168 | requests: |
| 169 | cpu: 500m |
| 170 | memory: 1Gi |
| 171 | large: |
| 172 | limits: |
| 173 | cpu: 4000m |
| 174 | memory: 8Gi |
| 175 | requests: |
| 176 | cpu: 1000m |
| 177 | memory: 2Gi |
| 178 | unlimited: {} |
farida azmy | 13388ba | 2021-03-17 11:33:28 +0200 | [diff] [blame] | 179 | |
| 180 | #Pods Service Account |
| 181 | serviceAccount: |
| 182 | nameOverride: message-router |
| 183 | roles: |
| 184 | - read |