rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 1 | # ============LICENSE_START=============================================== |
| 2 | # Copyright (C) 2023 Nordix Foundation. All rights reserved. |
aravind.est | 6f3b040 | 2024-03-07 15:53:04 +0000 | [diff] [blame] | 3 | # Copyright (C) 2023-2024 OpenInfra Foundation Europe. All rights reserved. |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +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 | # ============LICENSE_END================================================= |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 17 | |
| 18 | #------------------------------------------------------------------------- |
| 19 | # Global common setting |
| 20 | #------------------------------------------------------------------------- |
| 21 | |
PatrikBuhr | c5c107d | 2021-05-26 09:26:09 +0200 | [diff] [blame] | 22 | |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 23 | # Here you can enable inclusion or exclusion of each component. A not enabled component will not be installed. |
PatrikBuhr | c5c107d | 2021-05-26 09:26:09 +0200 | [diff] [blame] | 24 | nonrtric: |
| 25 | installPms: true |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 26 | installA1controller: true |
| 27 | installA1simulator: true |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 28 | installControlpanel: true |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 29 | installInformationservice: true |
| 30 | installRappcatalogueservice: true |
aravind.est | 8a7e77f | 2023-01-09 14:48:22 +0000 | [diff] [blame] | 31 | installRappcatalogueenhancedservice: true |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 32 | installNonrtricgateway: true |
| 33 | installKong: false |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 34 | installDmaapadapterservice: true |
| 35 | installDmaapmediatorservice: true |
| 36 | installHelmmanager: true |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 37 | installOrufhrecovery: true |
| 38 | installRansliceassurance: true |
aravind.est | 0c128bc | 2023-07-18 13:48:12 +0100 | [diff] [blame] | 39 | installCapifcore: true |
aravind.est | 031a911 | 2024-03-14 15:52:15 +0000 | [diff] [blame^] | 40 | installRanpm: false |
aravind.est | 6f3b040 | 2024-03-07 15:53:04 +0000 | [diff] [blame] | 41 | # rApp Manager functionality relies on ACM for its operation |
aravind.est | f36dc4a | 2023-11-14 13:17:48 +0000 | [diff] [blame] | 42 | installrAppmanager: true |
aravind.est | 6f3b040 | 2024-03-07 15:53:04 +0000 | [diff] [blame] | 43 | # DME Participant should only be activated when ACM installation is available for this participant to utilize |
| 44 | installDmeParticipant: false |
aravind.est | 0c128bc | 2023-07-18 13:48:12 +0100 | [diff] [blame] | 45 | |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 46 | volume1: |
| 47 | # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning) |
| 48 | size: 2Gi |
| 49 | storageClassName: pms-storage |
PatrikBuhr | 4c590d9 | 2021-12-09 14:16:01 +0100 | [diff] [blame] | 50 | hostPath: /var/nonrtric/pms-storage |
RehanRaza | 2482dc9 | 2021-09-22 18:14:27 +0200 | [diff] [blame] | 51 | volume2: |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 52 | # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning) |
| 53 | size: 2Gi |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 54 | storageClassName: ics-storage |
PatrikBuhr | 4c590d9 | 2021-12-09 14:16:01 +0100 | [diff] [blame] | 55 | hostPath: /var/nonrtric/ics-storage |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 56 | volume3: |
| 57 | size: 1Gi |
| 58 | storageClassName: helmmanager-storage |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 59 | common: |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 60 | releasePrefix: r3-dev-nonrtric |
| 61 | # Do not change the namespace |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 62 | namespace: |
| 63 | nonrtric: nonrtric |
RehanRaza | 2482dc9 | 2021-09-22 18:14:27 +0200 | [diff] [blame] | 64 | ingressClassName: kong |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 65 | |
| 66 | informationservice: |
| 67 | informationservice: |
| 68 | imagePullPolicy: Always |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 69 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 70 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 71 | name: 'nonrtric-plt-informationcoordinatorservice' |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 72 | tag: 1.6.0 |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 73 | service: |
| 74 | allowHttp: true |
| 75 | httpName: http |
| 76 | internalPort1: 9082 |
| 77 | targetPort1: 8083 |
| 78 | httpsName: https |
| 79 | internalPort2: 9083 |
| 80 | targetPort2: 8434 |
| 81 | liveness: |
| 82 | initialDelaySeconds: 20 |
| 83 | periodSeconds: 10 |
| 84 | readiness: |
| 85 | initialDelaySeconds: 20 |
| 86 | periodSeconds: 10 |
| 87 | persistence: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 88 | # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same. |
| 89 | # 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) |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 90 | size: 2Gi |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 91 | storageClassName: ics-storage |
| 92 | ingress: |
| 93 | enabled: true |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 94 | |
| 95 | # Need to check the external port Availability |
| 96 | policymanagementservice: |
| 97 | policymanagementservice: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 98 | imagePullPolicy: Always |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 99 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 100 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 101 | name: nonrtric-plt-a1policymanagementservice |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 102 | tag: 2.7.0 |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 103 | service: |
| 104 | allowHttp: true |
| 105 | httpName: http |
| 106 | internalPort1: 9080 |
| 107 | targetPort1: 8081 |
| 108 | httpsName: https |
| 109 | internalPort2: 9081 |
| 110 | targetPort2: 8433 |
| 111 | liveness: |
| 112 | initialDelaySeconds: 20 |
| 113 | periodSeconds: 10 |
| 114 | readiness: |
| 115 | initialDelaySeconds: 20 |
| 116 | periodSeconds: 10 |
| 117 | persistence: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 118 | # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same. |
| 119 | # 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) |
PatrikBuhr | 8a1a9a4 | 2021-06-04 10:57:06 +0200 | [diff] [blame] | 120 | size: 2Gi |
| 121 | storageClassName: pms-storage |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 122 | ingress: |
| 123 | enabled: true |
Lathish | 7e09001 | 2020-04-01 17:38:20 +0100 | [diff] [blame] | 124 | |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 125 | # A1 Controller may take few more minutes to start. Increase the initialDelaySeconds in liveness to avoid container restart. |
Lathish | 7e09001 | 2020-04-01 17:38:20 +0100 | [diff] [blame] | 126 | a1controller: |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 127 | a1controller: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 128 | imagePullPolicy: Always |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 129 | image: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 130 | registry: 'nexus3.onap.org:10002/onap' |
| 131 | name: sdnc-image |
| 132 | tag: 2.1.6 |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 133 | replicaCount: 1 |
| 134 | service: |
RehanRaza | d052a25 | 2020-05-27 14:56:30 +0200 | [diff] [blame] | 135 | allowHttp: true |
| 136 | httpName: http |
| 137 | internalPort1: 8282 |
| 138 | targetPort1: 8181 |
| 139 | httpsName: https |
| 140 | internalPort2: 8383 |
| 141 | targetPort2: 8443 |
| 142 | liveness: |
Lathish | 7a93470 | 2020-06-04 13:14:41 +0100 | [diff] [blame] | 143 | initialDelaySeconds: 300 |
RehanRaza | d052a25 | 2020-05-27 14:56:30 +0200 | [diff] [blame] | 144 | periodSeconds: 10 |
| 145 | readiness: |
| 146 | initialDelaySeconds: 60 |
| 147 | periodSeconds: 10 |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 148 | |
| 149 | a1simulator: |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 150 | a1simulator: |
| 151 | name: a1-sim |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 152 | imagePullPolicy: Always |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 153 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 154 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 155 | name: a1-simulator |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 156 | tag: 2.6.1 |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 157 | service: |
RehanRaza | 036da7f | 2020-06-01 17:11:37 +0200 | [diff] [blame] | 158 | allowHttp: true |
RehanRaza | e5a6ed0 | 2020-05-29 11:30:58 +0200 | [diff] [blame] | 159 | httpName: http |
| 160 | internalPort1: 8085 |
| 161 | targetPort1: 8085 |
| 162 | httpsName: https |
| 163 | internalPort2: 8185 |
| 164 | targetPort2: 8185 |
| 165 | liveness: |
| 166 | initialDelaySeconds: 20 |
| 167 | periodSeconds: 10 |
| 168 | readiness: |
| 169 | initialDelaySeconds: 20 |
| 170 | periodSeconds: 10 |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 171 | oscVersion: |
| 172 | name: a1-sim-osc |
| 173 | replicaCount: 2 |
| 174 | stdVersion: |
| 175 | name: a1-sim-std |
| 176 | replicaCount: 2 |
ecaiyanlinux | ee640dc | 2020-12-22 09:25:03 +0100 | [diff] [blame] | 177 | stdVersion2: |
| 178 | name: a1-sim-std2 |
| 179 | replicaCount: 2 |
Lathish | 7e09001 | 2020-04-01 17:38:20 +0100 | [diff] [blame] | 180 | |
| 181 | controlpanel: |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 182 | controlpanel: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 183 | imagePullPolicy: Always |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 184 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 185 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 186 | name: nonrtric-controlpanel |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 187 | tag: 2.5.0 |
Lathish | e4d2f4b | 2020-04-20 17:21:51 +0100 | [diff] [blame] | 188 | replicaCount: 1 |
| 189 | service: |
Lathish | 32a43aa | 2020-05-20 23:18:18 +0100 | [diff] [blame] | 190 | allowHttp: true |
| 191 | httpName: http |
| 192 | internalPort1: 8080 |
| 193 | targetPort1: 8080 |
| 194 | externalPort1: 30091 |
| 195 | httpsName: https |
| 196 | internalPort2: 8081 |
| 197 | targetPort2: 8082 |
| 198 | externalPort2: 30092 |
| 199 | liveness: |
| 200 | initialDelaySeconds: 20 |
| 201 | periodSeconds: 10 |
| 202 | readiness: |
| 203 | initialDelaySeconds: 20 |
| 204 | periodSeconds: 10 |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 205 | ingress: |
| 206 | enabled: false |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 207 | |
elinuxhenrik | f38d71d | 2020-12-01 13:08:14 +0100 | [diff] [blame] | 208 | rappcatalogueservice: |
| 209 | rappcatalogueservice: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 210 | imagePullPolicy: Always |
elinuxhenrik | f38d71d | 2020-12-01 13:08:14 +0100 | [diff] [blame] | 211 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 212 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 213 | name: nonrtric-plt-rappcatalogue |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 214 | tag: 1.2.0 |
elinuxhenrik | f38d71d | 2020-12-01 13:08:14 +0100 | [diff] [blame] | 215 | service: |
| 216 | allowHttp: true |
| 217 | httpName: http |
| 218 | internalPort1: 9085 |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 219 | targetPort1: 8680 |
elinuxhenrik | f38d71d | 2020-12-01 13:08:14 +0100 | [diff] [blame] | 220 | httpsName: https |
| 221 | internalPort2: 9086 |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 222 | targetPort2: 8633 |
elinuxhenrik | f38d71d | 2020-12-01 13:08:14 +0100 | [diff] [blame] | 223 | liveness: |
| 224 | initialDelaySeconds: 20 |
| 225 | periodSeconds: 10 |
| 226 | readiness: |
| 227 | initialDelaySeconds: 20 |
ecaiyanlinux | ee640dc | 2020-12-22 09:25:03 +0100 | [diff] [blame] | 228 | periodSeconds: 10 |
RehanRaza | e691473 | 2021-02-04 13:17:31 +0100 | [diff] [blame] | 229 | |
aravind.est | 1932aca | 2022-12-16 14:59:58 +0000 | [diff] [blame] | 230 | rappcatalogueenhancedservice: |
| 231 | rappcatalogueenhancedservice: |
| 232 | imagePullPolicy: Always |
| 233 | image: |
| 234 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
| 235 | name: nonrtric-plt-rappcatalogue-enhanced |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 236 | tag: 1.1.0 |
aravind.est | 1932aca | 2022-12-16 14:59:58 +0000 | [diff] [blame] | 237 | service: |
| 238 | allowHttp: true |
| 239 | httpName: http |
| 240 | internalPort1: 9696 |
| 241 | targetPort1: 9696 |
| 242 | liveness: |
| 243 | initialDelaySeconds: 20 |
| 244 | periodSeconds: 10 |
| 245 | readiness: |
| 246 | initialDelaySeconds: 20 |
| 247 | periodSeconds: 10 |
| 248 | |
RehanRaza | e691473 | 2021-02-04 13:17:31 +0100 | [diff] [blame] | 249 | nonrtricgateway: |
| 250 | nonrtricgateway: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 251 | imagePullPolicy: Always |
RehanRaza | e691473 | 2021-02-04 13:17:31 +0100 | [diff] [blame] | 252 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 253 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
RehanRaza | e691473 | 2021-02-04 13:17:31 +0100 | [diff] [blame] | 254 | name: nonrtric-gateway |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 255 | tag: 1.2.0 |
RehanRaza | e691473 | 2021-02-04 13:17:31 +0100 | [diff] [blame] | 256 | service: |
| 257 | httpName: http |
| 258 | internalPort1: 9090 |
| 259 | targetPort1: 9090 |
| 260 | externalPort1: 30093 |
| 261 | liveness: |
| 262 | initialDelaySeconds: 20 |
| 263 | periodSeconds: 10 |
| 264 | readiness: |
| 265 | initialDelaySeconds: 20 |
PatrikBuhr | 866a34f | 2021-04-12 17:02:21 +0200 | [diff] [blame] | 266 | periodSeconds: 10 |
RehanRaza | 2482dc9 | 2021-09-22 18:14:27 +0200 | [diff] [blame] | 267 | |
| 268 | dmaapadapterservice: |
| 269 | dmaapadapterservice: |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 270 | imagePullPolicy: Always |
RehanRaza | 2482dc9 | 2021-09-22 18:14:27 +0200 | [diff] [blame] | 271 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 272 | registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc' |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 273 | name: 'nonrtric-plt-dmaapadapter' |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 274 | tag: 1.3.0 |
RehanRaza | 2482dc9 | 2021-09-22 18:14:27 +0200 | [diff] [blame] | 275 | service: |
| 276 | allowHttp: true |
| 277 | httpName: http |
| 278 | internalPort1: 9087 |
| 279 | targetPort1: 8084 |
| 280 | httpsName: https |
| 281 | internalPort2: 9088 |
| 282 | targetPort2: 8435 |
| 283 | liveness: |
| 284 | initialDelaySeconds: 20 |
| 285 | periodSeconds: 10 |
| 286 | readiness: |
| 287 | initialDelaySeconds: 20 |
| 288 | periodSeconds: 10 |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 289 | |
| 290 | dmaapmediatorservice: |
| 291 | dmaapmediatorservice: |
| 292 | imagePullPolicy: IfNotPresent |
| 293 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 294 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 295 | name: "nonrtric-plt-dmaapmediatorproducer" |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 296 | tag: 1.2.0 |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 297 | service: |
| 298 | allowHttp: true |
| 299 | httpName: http |
| 300 | internalPort1: 8085 |
| 301 | targetPort1: 8085 |
| 302 | httpsName: https |
| 303 | internalPort2: 8185 |
| 304 | targetPort2: 8185 |
| 305 | liveness: |
| 306 | initialDelaySeconds: 20 |
| 307 | periodSeconds: 10 |
| 308 | readiness: |
| 309 | initialDelaySeconds: 20 |
| 310 | periodSeconds: 10 |
| 311 | |
| 312 | helmmanager: |
| 313 | helmmanager: |
| 314 | clusterRoleName: cluster-admin |
| 315 | imagePullPolicy: Always |
| 316 | image: |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 317 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 318 | name: "nonrtric-plt-helmmanager" |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 319 | tag: 1.3.0 |
BjornMagnussonXA | 326fd8c | 2021-12-10 10:13:03 +0100 | [diff] [blame] | 320 | service: |
| 321 | httpName: http |
| 322 | internalPort1: 8112 |
| 323 | targetPort1: 8083 |
| 324 | liveness: |
| 325 | initialDelaySeconds: 20 |
| 326 | periodSeconds: 10 |
| 327 | readiness: |
| 328 | initialDelaySeconds: 20 |
| 329 | periodSeconds: 10 |
| 330 | persistence: |
| 331 | # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same. |
| 332 | # 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) |
| 333 | size: 1Gi |
BjornMagnussonXA | 9b63bfe | 2021-12-16 21:30:28 +0100 | [diff] [blame] | 334 | storageClassName: helmmanager-storage |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 335 | |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 336 | ransliceassurance: |
| 337 | ransliceassurance: |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 338 | imagePullPolicy: IfNotPresent |
| 339 | image: |
| 340 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 341 | name: "nonrtric-rapp-ransliceassurance" |
rohithrajneesh | f587605 | 2023-06-21 12:45:25 +0100 | [diff] [blame] | 342 | tag: 1.3.0 |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 343 | env: |
| 344 | mr_host: "http://onap-dmaap" |
| 345 | mr_port: "3904" |
| 346 | sdnr_address: "http://sdnr:8181" |
| 347 | sdnr_user: "admin" |
| 348 | sdnr_password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" |
| 349 | log_level: "Info" |
| 350 | polltime: "10" |
aravind.est | d1457dd | 2022-12-16 17:21:32 +0000 | [diff] [blame] | 351 | node_id: "o-du-1122" |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 352 | |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 353 | orufhrecovery: |
| 354 | orufhrecovery: |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 355 | imagePullPolicy: IfNotPresent |
| 356 | image: |
| 357 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
ktimoney | f67e67b | 2022-06-08 14:39:57 +0100 | [diff] [blame] | 358 | name: "nonrtric-rapp-orufhrecovery-consumer" |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 359 | tag: 1.1.0 |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 360 | env: |
| 361 | consumer_host: "http://mrproducer" |
| 362 | consumer_port: "8095" |
ecaiyanlinux | baeef2c | 2022-02-14 22:36:54 +0100 | [diff] [blame] | 363 | consumer_cert_path: "security/consumer.crt" |
| 364 | consumer_key_path: "security/consumer.key" |
ecaiyanlinux | f5c959c | 2021-12-15 15:06:42 +0100 | [diff] [blame] | 365 | info_coord_addr: "http://ics:8083" |
| 366 | sdnr_address: "http://sdnr:8282" |
| 367 | sdnr_user: "admin" |
| 368 | sdnr_password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" |
| 369 | oru_to_odu_map_file: "o-ru-to-o-du-map.csv" |
| 370 | log_level: "Info" |
elinuxhenrik | 89a4298 | 2022-07-01 11:19:43 +0200 | [diff] [blame] | 371 | |
aravind.est | 41f0108 | 2022-12-16 13:12:34 +0000 | [diff] [blame] | 372 | |
| 373 | capifcore: |
| 374 | capifcore: |
| 375 | imagePullPolicy: IfNotPresent |
| 376 | image: |
| 377 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
| 378 | name: nonrtric-plt-capifcore |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 379 | tag: 1.2.0 |
aravind.est | 41f0108 | 2022-12-16 13:12:34 +0000 | [diff] [blame] | 380 | env: |
| 381 | chart_museum_url: "http://chartmuseum:8080" |
aravind.est | f36dc4a | 2023-11-14 13:17:48 +0000 | [diff] [blame] | 382 | repo_name: "capifcore" |
| 383 | |
| 384 | rappmanager: |
| 385 | rappmanager: |
| 386 | imagePullPolicy: IfNotPresent |
| 387 | image: |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 388 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
aravind.est | f36dc4a | 2023-11-14 13:17:48 +0000 | [diff] [blame] | 389 | name: nonrtric-plt-rappmanager |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 390 | tag: 0.0.1 |
aravind.est | f36dc4a | 2023-11-14 13:17:48 +0000 | [diff] [blame] | 391 | service: |
| 392 | httpName: http |
| 393 | internalPort1: 8080 |
| 394 | targetPort1: 8080 |
| 395 | liveness: |
| 396 | initialDelaySeconds: 20 |
| 397 | periodSeconds: 10 |
| 398 | readiness: |
| 399 | initialDelaySeconds: 20 |
| 400 | periodSeconds: 10 |
| 401 | ingress: |
| 402 | enabled: true |
| 403 | acm: |
| 404 | username: cnVudGltZVVzZXI= |
| 405 | password: emIhWHp0RzM0 |
aravind.est | 7a8f974 | 2023-11-16 13:19:15 +0000 | [diff] [blame] | 406 | |
| 407 | dmeparticipant: |
| 408 | dmeparticipant: |
| 409 | imagePullPolicy: IfNotPresent |
| 410 | image: |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 411 | registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" |
aravind.est | 7a8f974 | 2023-11-16 13:19:15 +0000 | [diff] [blame] | 412 | name: nonrtric-plt-participant-impl-dme |
rohithrajneesh | 177701e | 2023-12-18 23:02:55 +0000 | [diff] [blame] | 413 | tag: 0.0.1 |
aravind.est | 7a8f974 | 2023-11-16 13:19:15 +0000 | [diff] [blame] | 414 | service: |
| 415 | httpName: http |
| 416 | internalPort1: 8080 |
| 417 | targetPort1: 8080 |
| 418 | liveness: |
| 419 | initialDelaySeconds: 20 |
| 420 | periodSeconds: 10 |
| 421 | readiness: |
| 422 | initialDelaySeconds: 20 |
| 423 | periodSeconds: 10 |
| 424 | ingress: |
| 425 | enabled: false |
| 426 | security: |
| 427 | username: cGFydGljaXBhbnRVc2VyCg== |
| 428 | password: emIhWHp0RzM0 |