Ikram Ikramullah | 40b120b | 2018-05-01 11:35:40 -0400 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware |
Dileep Ranganathan | 61225cb | 2018-10-01 08:14:16 -0700 | [diff] [blame] | 2 | # Modifications Copyright © 2018 Intel Corporation |
Ikram Ikramullah | 40b120b | 2018-05-01 11:35:40 -0400 | [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: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 20 | readinessImage: onap/oom/readiness:3.0.1 |
Ikram Ikramullah | 40b120b | 2018-05-01 11:35:40 -0400 | [diff] [blame] | 21 | loggingRepository: docker.elastic.co |
| 22 | loggingImage: beats/filebeat:5.5.0 |
| 23 | repository: nexus3.onap.org:10001 |
| 24 | commonConfigPrefix: onap-oof-has |
| 25 | image: |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 26 | optf_has: onap/optf-has:2.1.2 |
Ikram Ikramullah | 40b120b | 2018-05-01 11:35:40 -0400 | [diff] [blame] | 27 | filebeat: docker.elastic.co/beats/filebeat:5.5.0 |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 28 | persistence: |
| 29 | enabled: true |
Ikram Ikramullah | 40b120b | 2018-05-01 11:35:40 -0400 | [diff] [blame] | 30 | |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 31 | ################################################################# |
| 32 | # Secrets metaconfig |
| 33 | ################################################################# |
| 34 | secrets: |
| 35 | - uid: oof-onap-certs |
| 36 | name: &oof-certs '{{ include "common.release" . }}-oof-onap-certs' |
| 37 | externalSecret: '{{ tpl (default "" .Values.certSecret) . }}' |
| 38 | type: generic |
| 39 | filePaths: '{{ .Values.secretsFilePaths }}' |
| 40 | |
Ikram Ikramullah | 40b120b | 2018-05-01 11:35:40 -0400 | [diff] [blame] | 41 | pullPolicy: Always |
| 42 | nodePortPrefix: 302 |
| 43 | dataRootDir: /dockerdata-nfs |
Ritu Sood | 3a63d43 | 2018-05-24 08:23:14 -0700 | [diff] [blame] | 44 | config: |
Dileep Ranganathan | 61225cb | 2018-10-01 08:14:16 -0700 | [diff] [blame] | 45 | aaf: |
| 46 | serviceName: aaf-service |
| 47 | port: 8100 |
Ritu Sood | 3a63d43 | 2018-05-24 08:23:14 -0700 | [diff] [blame] | 48 | aai: |
| 49 | serviceName: aai |
| 50 | port: 8443 |
| 51 | msb: |
| 52 | serviceName: msb-iag |
| 53 | port: 80 |
Dileep Ranganathan | 61225cb | 2018-10-01 08:14:16 -0700 | [diff] [blame] | 54 | music: |
Tschaen, Brendan | 08d7b63 | 2020-04-02 19:49:13 +0000 | [diff] [blame] | 55 | serviceName: music |
| 56 | port: 8443 |
Dileep Ranganathan | 61225cb | 2018-10-01 08:14:16 -0700 | [diff] [blame] | 57 | sms: |
| 58 | serviceName: aaf-sms |
| 59 | port: 10443 |
| 60 | # Resource Limit flavor -By Default using small |
| 61 | flavor: small |
| 62 | # Segregation for Different environment (Small and Large) |
| 63 | resources: |
| 64 | small: |
| 65 | limits: |
| 66 | memory: 2Gi |
| 67 | cpu: 1000m |
| 68 | requests: |
| 69 | memory: 1Gi |
| 70 | cpu: 500m |
| 71 | large: |
| 72 | limits: |
| 73 | memory: 4Gi |
| 74 | cpu: 2000m |
| 75 | requests: |
| 76 | memory: 2Gi |
| 77 | cpu: 1000m |
| 78 | unlimited: {} |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 79 | |
| 80 | #component overrides |
| 81 | oof-has-api: |
| 82 | enabled: true |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 83 | certSecret: *oof-certs |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 84 | oof-has-controller: |
| 85 | enabled: true |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 86 | certSecret: *oof-certs |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 87 | oof-has-data: |
| 88 | enabled: true |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 89 | certSecret: *oof-certs |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 90 | oof-has-reservation: |
| 91 | enabled: true |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 92 | certSecret: *oof-certs |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 93 | oof-has-solver: |
| 94 | enabled: true |
krishnaa96 | 24a7ef3 | 2020-10-09 12:01:05 +0530 | [diff] [blame] | 95 | certSecret: *oof-certs |
krishnaa96 | dbcd1ca | 2020-08-11 10:26:50 +0530 | [diff] [blame] | 96 | |