NONRTRIC-946: Servicemanager - Add Kong data plane and control plane
[it/dep.git] / nonrtric / helm / servicemanager / values.yaml
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
24     tag: 0.1.2
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: |
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.
42     KONG_DOMAIN: "kong"
43     KONG_PROTOCOL: "http"
44     KONG_CONTROL_PLANE_IPV4: "kong-nonrtric-kong-admin.nonrtric.svc.cluster.local"
45     KONG_CONTROL_PLANE_PORT: "8001"
46     KONG_DATA_PLANE_IPV4: "kong-nonrtric-kong-proxy.nonrtric.svc.cluster.local"
47     KONG_DATA_PLANE_PORT: "80"
48     CAPIF_PROTOCOL: "http"
49     CAPIF_IPV4: "capifcore.nonrtric.svc.cluster.local"
50     CAPIF_PORT: "8090"
51     LOG_LEVEL: "Info"
52     SERVICE_MANAGER_PORT: "8095"