Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada , ZTE |
Sylvain Desbureaux | 55af648 | 2020-11-02 18:21:11 +0100 | [diff] [blame] | 2 | # Copyright © 2021 Orange |
Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +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. |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefix: 302 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 20 | |
| 21 | ################################################################# |
Sylvain Desbureaux | 55af648 | 2020-11-02 18:21:11 +0100 | [diff] [blame] | 22 | # AAF part |
| 23 | ################################################################# |
| 24 | certInitializer: |
| 25 | nameOverride: msb-iag-cert-initializer |
| 26 | aafDeployFqi: deployer@people.osaaf.org |
| 27 | aafDeployPass: demo123456! |
| 28 | # aafDeployCredsExternalSecret: some secret |
| 29 | fqdn: msb-iag |
| 30 | fqi: msb-iag@msb-iag.onap.org |
| 31 | fqi_namespace: org.onap.msb-iag |
| 32 | public_fqdn: msb-iag.onap.org |
| 33 | cadi_longitude: "0.0" |
| 34 | cadi_latitude: "0.0" |
| 35 | app_ns: org.osaaf.aaf |
| 36 | credsPath: /opt/app/osaaf/local |
| 37 | aaf_add_config: | |
Sylvain Desbureaux | 02f8a81 | 2021-02-23 16:47:56 +0100 | [diff] [blame] | 38 | mkdir -p {{ .Values.credsPath }}/certs |
| 39 | echo "*** retrieve certificate from pkcs12" |
| 40 | openssl pkcs12 -in {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.p12 \ |
| 41 | -out {{ .Values.credsPath }}/certs/cert.crt -nokeys \ |
| 42 | -passin pass:$cadi_keystore_password_p12 \ |
| 43 | -passout pass:$cadi_keystore_password_p12 |
| 44 | echo "*** copy key to relevant place" |
| 45 | cp {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.key {{ .Values.credsPath }}/certs/cert.key |
| 46 | echo "*** change ownership and read/write attributes" |
| 47 | chown -R 1000 {{ .Values.credsPath }}/certs |
| 48 | chmod 600 {{ .Values.credsPath }}/certs/cert.crt |
| 49 | chmod 600 {{ .Values.credsPath }}/certs/cert.key |
Sylvain Desbureaux | 55af648 | 2020-11-02 18:21:11 +0100 | [diff] [blame] | 50 | |
| 51 | ################################################################# |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 52 | # Application configuration defaults. |
| 53 | ################################################################# |
| 54 | # application image |
jinquanni | 9b295ec | 2022-03-24 17:28:11 +0800 | [diff] [blame^] | 55 | image: onap/msb/msb_apigateway:1.4.0 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 56 | pullPolicy: Always |
Huabing Zhao | 81b8976 | 2018-07-30 06:33:03 +0000 | [diff] [blame] | 57 | istioSidecar: true |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 58 | |
| 59 | # application configuration |
| 60 | config: |
| 61 | routeLabels: "visualRange:1" |
| 62 | |
| 63 | # default number of instances |
| 64 | replicaCount: 1 |
| 65 | |
| 66 | nodeSelector: {} |
| 67 | |
| 68 | affinity: {} |
| 69 | |
| 70 | # probe configuration parameters |
| 71 | liveness: |
| 72 | initialDelaySeconds: 10 |
| 73 | periodSeconds: 10 |
| 74 | # necessary to disable liveness probe when setting breakpoints |
| 75 | # in debugger so K8s doesn't restart unresponsive container |
| 76 | enabled: true |
| 77 | |
| 78 | readiness: |
| 79 | initialDelaySeconds: 10 |
| 80 | periodSeconds: 10 |
| 81 | |
| 82 | service: |
| 83 | type: NodePort |
| 84 | name: msb-iag |
| 85 | externalPort: 80 |
| 86 | internalPort: 80 |
| 87 | nodePort: 80 |
| 88 | externalPortHttps: 443 |
| 89 | internalPortHttps: 443 |
| 90 | nodePortHttps: 83 |
| 91 | |
| 92 | ingress: |
| 93 | enabled: false |
Lucjan Bryndza | a7228ec | 2019-12-02 15:11:53 +0100 | [diff] [blame] | 94 | service: |
| 95 | - baseaddr: "msbiag" |
| 96 | name: "msb-iag" |
| 97 | port: 443 |
| 98 | config: |
| 99 | ssl: "redirect" |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 100 | |
vaibhavjayas | fe2140f | 2018-09-21 08:30:57 +0000 | [diff] [blame] | 101 | # Resource Limit flavor -By Default using small |
| 102 | flavor: small |
| 103 | # Segregation for Different environment (Small and Large) |
| 104 | resources: |
| 105 | small: |
| 106 | limits: |
| 107 | cpu: 100m |
| 108 | memory: 400Mi |
| 109 | requests: |
| 110 | cpu: 50m |
| 111 | memory: 200Mi |
| 112 | large: |
| 113 | limits: |
| 114 | cpu: 200m |
| 115 | memory: 800Mi |
| 116 | requests: |
| 117 | cpu: 100m |
| 118 | memory: 400Mi |
Huabing Zhao | 0f176a0 | 2019-03-18 19:31:45 +0800 | [diff] [blame] | 119 | unlimited: {} |
farida azmy | a4478e8 | 2021-10-11 13:48:11 +0200 | [diff] [blame] | 120 | |
| 121 | #Pods Service Account |
| 122 | serviceAccount: |
| 123 | nameOverride: msb-iag |
| 124 | roles: |
| 125 | - read |
Maciej Wereski | 0763e6e | 2021-11-18 11:48:25 +0100 | [diff] [blame] | 126 | |
| 127 | #Logs configuration |
| 128 | log: |
| 129 | path: /var/log/onap |
| 130 | logConfigMapNamePrefix: '{{ include "common.fullname" . }}' |