Add rAppmanager and Capifcore charts in ORAN_OOM
[it/dep.git] / smo-install / oran_oom / rappmanager / values.yaml
1 #  ============LICENSE_START===============================================
2 #  Copyright (C) 2023-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
18 # Default values for rApp Manager.
19 # This is a YAML-formatted file.
20 # Declare variables to be passed into your templates.
21 # This needs to be set up with ACM installation in order for the functionalities to operate.
22
23 imagePullPolicy: IfNotPresent
24 image:
25   registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
26   name: nonrtric-plt-rappmanager
27   tag: 0.0.1
28 service:
29   type: ClusterIP
30   ports:
31   - name: http
32     internalPort: "8080"
33     targetPort: "8080"
34 liveness:
35   initialDelaySeconds: 20
36   periodSeconds: 10
37 readiness:
38   initialDelaySeconds: 20
39   periodSeconds: 10
40 persistence:
41   size: 2Gi
42   storageClassName: standard
43 ingress:
44   enabled: false
45
46 rappmanager:
47   acm:
48     username: cnVudGltZVVzZXI=
49     password: emIhWHp0RzM0
50
51 application:
52   rappmanager:
53     csarlocation: /opt/app/rappmanager/csar
54     acm:
55       baseurl: http://policy-clamp-runtime-acm.onap:6969/onap/policy/clamp/acm/v2/
56       maxRetries: 10
57       retryInterval: 2 #seconds
58     sme:
59       baseurl: http://capifcore.nonrtric:8090
60       providerBasePath: /api-provider-management/v1/
61       invokerBasePath: /api-invoker-management/v1/
62       publishApiBasePath: /published-apis/v1/
63       maxRetries: 3
64       retryInterval: 2 #seconds
65     dme:
66       baseurl: http://informationservice.nonrtric:9082
67
68     spring:
69       jackson:
70         default-property-inclusion: non_null
71
72     logging:
73       level:
74         root: INFO
75         com.oransc: INFO
76         org.apache.http: INFO
77         httpclient.wire: INFO
78         org.springframework.web.client.RestTemplate: INFO
79
80     management:
81       endpoints:
82         web:
83           exposure:
84             include: "*"