blob: dbb261c74b5fe64ca64864a3158b4dc82bf00ab6 [file] [log] [blame]
DenisGNoonanb4dae852024-03-26 14:46:10 +00001# ============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
19servicemanager:
20 imagePullPolicy: IfNotPresent
21 image:
22 registry: 'nexus3.o-ran-sc.org:10004/o-ran-sc'
23 name: nonrtric-plt-servicemanager
DenisGNoonana86df572024-04-22 16:46:57 +010024 tag: 0.1.2
DenisGNoonanb4dae852024-03-26 14:46:10 +000025 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
37data:
38 .env: |
DenisGNoonana86df572024-04-22 16:46:57 +010039 # 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.
DenisGNoonanb4dae852024-03-26 14:46:10 +000042 KONG_DOMAIN: "kong"
43 KONG_PROTOCOL: "http"
DenisGNoonana86df572024-04-22 16:46:57 +010044 KONG_CONTROL_PLANE_IPV4: "kong-nonrtric-kong-admin.nonrtric.svc.cluster.local"
DenisGNoonanb4dae852024-03-26 14:46:10 +000045 KONG_CONTROL_PLANE_PORT: "8001"
DenisGNoonana86df572024-04-22 16:46:57 +010046 KONG_DATA_PLANE_IPV4: "kong-nonrtric-kong-proxy.nonrtric.svc.cluster.local"
47 KONG_DATA_PLANE_PORT: "80"
DenisGNoonanb4dae852024-03-26 14:46:10 +000048 CAPIF_PROTOCOL: "http"
49 CAPIF_IPV4: "capifcore.nonrtric.svc.cluster.local"
50 CAPIF_PORT: "8090"
DenisGNoonana86df572024-04-22 16:46:57 +010051 LOG_LEVEL: "Info"
DenisGNoonanb4dae852024-03-26 14:46:10 +000052 SERVICE_MANAGER_PORT: "8095"