sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # Mofification Copyright © 2021 AT&T |
| 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 overrides. |
| 18 | # |
| 19 | # These overrides will affect all helm charts (ie. applications) |
| 20 | # that are listed below and are 'enabled'. |
| 21 | ################################################################# |
| 22 | |
| 23 | ##### ORAN ##### |
| 24 | |
| 25 | ######### NONRTRIC ######### |
| 26 | |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 27 | nonrtric: |
Louis Li | fdc0387 | 2024-02-26 18:37:21 +0000 | [diff] [blame^] | 28 | installPms: true |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 29 | installA1controller: false |
| 30 | installA1simulator: true |
| 31 | installControlpanel: true |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 32 | installInformationservice: true |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 33 | installRappcatalogueservice: true |
| 34 | installNonrtricgateway: true |
| 35 | installKong: true |
| 36 | installORUApp: true |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 37 | installODUSMOApp: true |
| 38 | installODUICSApp: true |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 39 | installTopology: true |
| 40 | installDmaapadapterservice: true |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 41 | installDmaapmediatorservice: true |
| 42 | installHelmmanager: true |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 43 | # override default mount path root directory |
| 44 | # referenced by persistent volumes and log files |
| 45 | persistence: |
| 46 | mountPath: /dockerdata-nfs |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 47 | volume1: |
| 48 | # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning) |
| 49 | size: 2Gi |
| 50 | storageClassName: pms-storage |
| 51 | volume2: |
| 52 | # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning) |
| 53 | size: 2Gi |
| 54 | storageClassName: ics-storage |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 55 | volume3: |
| 56 | size: 1Gi |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 57 | storageClassName: helmmanager-storage |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 58 | |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 59 | common: |
| 60 | releasePrefix: r3-dev-nonrtric |
| 61 | ingressClassName: kong |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 62 | |
| 63 | informationservice: |
Louis | 918108f | 2023-12-19 12:05:56 +0000 | [diff] [blame] | 64 | persistence: |
| 65 | # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same. |
| 66 | # The alternative use a dynamic volume provisioner in the cluster. Storage class can then be for instance 'standard' or 'gluster-fs' (depeneds on which classes that are available) |
| 67 | size: 2Gi |
| 68 | storageClassName: ics-storage |
| 69 | ingress: |
| 70 | enabled: true |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 71 | |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 72 | |
| 73 | # Need to check the external port Availability |
| 74 | policymanagementservice: |
Louis | 918108f | 2023-12-19 12:05:56 +0000 | [diff] [blame] | 75 | persistence: |
| 76 | # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same. |
| 77 | # The alternative use a dynamic volume provisioner in the cluster. Storage class can then be fon instance 'standard' or 'gluster-fs' (depeneds on which classes that are available) |
| 78 | size: 2Gi |
| 79 | storageClassName: pms-storage |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 80 | ingress: |
| 81 | enabled: true |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 82 | |
| 83 | kong: |
| 84 | ingressController: |
aravind.est | 2db1c70 | 2022-11-09 14:06:19 +0000 | [diff] [blame] | 85 | installCRDs: false |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 86 | admin: |
| 87 | enabled: true |
| 88 | |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 89 | helmmanager: |
Louis | 918108f | 2023-12-19 12:05:56 +0000 | [diff] [blame] | 90 | persistence: |
| 91 | # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed si> |
| 92 | # The alternative use a dynamic volume provisioner in the cluster. Storage class can then be f> |
| 93 | storageClassName: helmmanager-storage |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 94 | |
| 95 | controlpanel: |
Louis | 918108f | 2023-12-19 12:05:56 +0000 | [diff] [blame] | 96 | ingress: |
| 97 | enabled: false |
sebdet | 11f85c7 | 2021-12-17 18:27:29 +0100 | [diff] [blame] | 98 | |
sebdet | bcbc77d | 2021-11-22 14:15:53 +0100 | [diff] [blame] | 99 | oru-app: |
| 100 | simulators: |
| 101 | - simRu: o-ru-11221 |
| 102 | simDu: o-du-1122 |
| 103 | - simRu: o-ru-11222 |
| 104 | simDu: o-du-1122 |
| 105 | - simRu: o-ru-11223 |
| 106 | simDu: o-du-1122 |
| 107 | - simRu: o-ru-11211 |
| 108 | simDu: o-du-1121 |
| 109 | |
sebdet | 0fd7875 | 2021-12-01 18:41:21 +0100 | [diff] [blame] | 110 | a1simulator: |
| 111 | a1Sims: |
sebdet | 8b713ed | 2022-01-19 10:08:13 +0100 | [diff] [blame] | 112 | - name: a1-sim-osc-0 |
sebdet | 0fd7875 | 2021-12-01 18:41:21 +0100 | [diff] [blame] | 113 | a1Version: OSC_2.1.0 |
| 114 | allowHttp: true |
sebdet | 8b713ed | 2022-01-19 10:08:13 +0100 | [diff] [blame] | 115 | - name: a1-sim-osc-1 |
| 116 | a1Version: OSC_2.1.0 |
| 117 | allowHttp: true |
| 118 | - name: a1-sim-std-0 |
| 119 | a1Version: STD_1.1.3 |
| 120 | allowHttp: true |
sebdet | 0fd7875 | 2021-12-01 18:41:21 +0100 | [diff] [blame] | 121 | - name: a1-sim-std-1 |
| 122 | a1Version: STD_1.1.3 |
| 123 | allowHttp: true |
sebdet | 8b713ed | 2022-01-19 10:08:13 +0100 | [diff] [blame] | 124 | - name: a1-sim-std2-0 |
| 125 | a1Version: STD_2.0.0 |
| 126 | allowHttp: true |
| 127 | - name: a1-sim-std2-1 |
sebdet | 0fd7875 | 2021-12-01 18:41:21 +0100 | [diff] [blame] | 128 | a1Version: STD_2.0.0 |
| 129 | allowHttp: true |
sebdet | bcbc77d | 2021-11-22 14:15:53 +0100 | [diff] [blame] | 130 | |
| 131 | |
sebdet | a2c2df5 | 2021-10-15 13:47:31 +0200 | [diff] [blame] | 132 | ######### RIC_AUX ######### |
| 133 | dashboard: |
| 134 | cipher: |
| 135 | enc: |
| 136 | key: AGLDdG4D04BKm2IxIWEr8o== |
| 137 | portalapi: |
| 138 | security: false |
| 139 | appname: RIC-Dashboard |
| 140 | username: Default |
| 141 | password: password |
| 142 | ecomp_redirect_url: https://portal.api.simpledemo.onap.org:30225/ONAPPORTAL/login.htm |
| 143 | ecomp_rest_url: http://portal-app:8989/ONAPPORTAL/auxapi |
| 144 | ueb_app_key: uebkey |
| 145 | # instances are passed as string and reformatted into YAML |
| 146 | ricinstances: | |
| 147 | regions: |
| 148 | - |
| 149 | name: Region PIZ-R4 |
| 150 | instances: |
| 151 | - |
| 152 | key: i1 |
| 153 | name: RIC |
| 154 | appUrlPrefix: http://ric-entry |
| 155 | caasUrlPrefix: http://caas-ingress-is-REC-only |
| 156 | pltUrlPrefix: http://ric-entry |
| 157 | |
sebdet | bcbc77d | 2021-11-22 14:15:53 +0100 | [diff] [blame] | 158 | |