DenisGNoonan | b4dae85 | 2024-03-26 14:46:10 +0000 | [diff] [blame] | 1 | # ============LICENSE_START=============================================== |
| 2 | # Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. |
| 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 | # ============LICENSE_END================================================= |
| 16 | |
| 17 | # Default values for Servicemanager |
| 18 | |
| 19 | servicemanager: |
| 20 | imagePullPolicy: IfNotPresent |
| 21 | image: |
| 22 | registry: 'nexus3.o-ran-sc.org:10004/o-ran-sc' |
| 23 | name: nonrtric-plt-servicemanager |
DenisGNoonan | a86df57 | 2024-04-22 16:46:57 +0100 | [diff] [blame^] | 24 | tag: 0.1.2 |
DenisGNoonan | b4dae85 | 2024-03-26 14:46:10 +0000 | [diff] [blame] | 25 | apiVersion: v1 |
| 26 | kind: ConfigMap |
| 27 | metadataName: servicemanager-configmap |
| 28 | service: |
| 29 | httpName: http |
| 30 | allowHttp: true |
| 31 | port: 8095 |
| 32 | targetPort: 8095 |
| 33 | nodePort: 31575 |
| 34 | type: NodePort |
| 35 | SERVICE_MANAGER_ENV: "" |
| 36 | |
| 37 | data: |
| 38 | .env: | |
DenisGNoonan | a86df57 | 2024-04-22 16:46:57 +0100 | [diff] [blame^] | 39 | # The Kong Data plane provides the endpoint that Service Manager gives to the rApp so that the rApp can invoke the CAPIF published API. |
| 40 | # In a Kubernetes environment, we need to use the Kong NodePort IP and nodePort if the rApp needs access from outside the Kong cluster. |
| 41 | # From inside the Kong cluster, we can use the Kubernetes cluster DNS entry, kong-nonrtric-kong-proxy.nonrtric.svc.cluster.local. |
DenisGNoonan | b4dae85 | 2024-03-26 14:46:10 +0000 | [diff] [blame] | 42 | KONG_DOMAIN: "kong" |
| 43 | KONG_PROTOCOL: "http" |
DenisGNoonan | a86df57 | 2024-04-22 16:46:57 +0100 | [diff] [blame^] | 44 | KONG_CONTROL_PLANE_IPV4: "kong-nonrtric-kong-admin.nonrtric.svc.cluster.local" |
DenisGNoonan | b4dae85 | 2024-03-26 14:46:10 +0000 | [diff] [blame] | 45 | KONG_CONTROL_PLANE_PORT: "8001" |
DenisGNoonan | a86df57 | 2024-04-22 16:46:57 +0100 | [diff] [blame^] | 46 | KONG_DATA_PLANE_IPV4: "kong-nonrtric-kong-proxy.nonrtric.svc.cluster.local" |
| 47 | KONG_DATA_PLANE_PORT: "80" |
DenisGNoonan | b4dae85 | 2024-03-26 14:46:10 +0000 | [diff] [blame] | 48 | CAPIF_PROTOCOL: "http" |
| 49 | CAPIF_IPV4: "capifcore.nonrtric.svc.cluster.local" |
| 50 | CAPIF_PORT: "8090" |
DenisGNoonan | a86df57 | 2024-04-22 16:46:57 +0100 | [diff] [blame^] | 51 | LOG_LEVEL: "Info" |
DenisGNoonan | b4dae85 | 2024-03-26 14:46:10 +0000 | [diff] [blame] | 52 | SERVICE_MANAGER_PORT: "8095" |