NONRTRIC980: fixs for controlpanel kong, 'hunkey dory' and pms ports
[it/dep.git] / smo-install / oran_oom / 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 imagePullPolicy: IfNotPresent
20 image:
21   registry: 'nexus3.o-ran-sc.org:10004/o-ran-sc'
22   name: nonrtric-plt-servicemanager
23   tag: 0.1.2
24 service:
25   httpName: http
26   ports:
27   - name: http
28     internalPort: "8095"
29     targetPort: "8095"
30     nodePort: 31575
31   type: NodePort
32 liveness:
33   initialDelaySeconds: 300
34   periodSeconds: 10
35 readiness:
36   initialDelaySeconds: 60
37   periodSeconds: 10
38 resources:
39   small:
40     limits:
41       cpu: 250m
42       memory: 256Mi
43     requests:
44       cpu: 80m
45       memory: 128Mi
46   large:
47     limits:
48       cpu: 400m
49       memory: 8Gi
50     requests:
51       cpu: 200m
52       memory: 2Gi
53   unlimited: {}
54 nameOverride: ""
55
56
57 allowHttp: true
58 SERVICE_MANAGER_ENV: ""
59
60 data:
61   .env: |
62     # The Kong Data plane provides the endpoint that Service Manager gives to the rApp so that the rApp can invoke the CAPIF published API.
63     # In a Kubernetes environment, we need to use the Kong NodePort IP and nodePort if the rApp needs access from outside the Kong cluster.
64     # From inside the Kong cluster, we can use the Kubernetes cluster DNS entry, oran-nonrtric-kong-proxy.nonrtric.svc.cluster.local.
65     KONG_DOMAIN: "kong"
66     KONG_PROTOCOL: "http"
67     KONG_CONTROL_PLANE_IPV4: "oran-nonrtric-kong-admin.nonrtric.svc.cluster.local"
68     KONG_CONTROL_PLANE_PORT: "8001"
69     KONG_DATA_PLANE_IPV4: "oran-nonrtric-kong-proxy.nonrtric.svc.cluster.local"
70     KONG_DATA_PLANE_PORT: "80"
71     CAPIF_PROTOCOL: "http"
72     CAPIF_IPV4: "capifcore.nonrtric.svc.cluster.local"
73     CAPIF_PORT: "8090"
74     LOG_LEVEL: "Info"
75     SERVICE_MANAGER_PORT: "8095"