blob: e9699682f405ccf550080df288635f46f603c2b6 [file] [log] [blame]
PatrikBuhra2bc79c2019-10-29 13:39:00 +01001# ========================LICENSE_START=================================
2# O-RAN-SC
3# %%
4# Copyright (C) 2019 AT&T Intellectual Property
5# %%
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ========================LICENSE_END===================================
18
19# Defines RIC Dashboard property keys and default values.
20# Create a copy in the launch directory to override values; or
21# copy to "application-abc.properties" as mentioned in the README.
22
23# A spring property but without a "spring" prefix;
24# the port number is chosen RANDOMLY when running tests
25server.port = 8080
26
27# path to file that stores user details;
28# use a persistent volume in a K8S deployment
29userfile = users.json
30
31# boolean flag whether to enforce Portal user and roles on requests
32portalapi.security = true
33# class that decrypts ciphertext from Portal
34portalapi.decryptor = org.oransc.ric.portal.dashboard.portalapi.PortalSdkDecryptorAes
35# name of request cookie with user ID
36portalapi.usercookie = UserId
37
38# portal credentials must be supplied at deployment time
39portalapi.appname = RIC Dashboard
40portalapi.username =
41portalapi.password =
42
43# endpoint URLs must be supplied at deployment time
44# A1 Mediator
45a1med.url.prefix = http://jar-app-props-default-A1-URL-prefix
46a1med.url.suffix =
47# endpoint URLs must be supplied at deployment time
48# A1 Controller
49a1controller.url.prefix = http://localhost:8282
50a1controller.url.suffix = /restconf/operations
51# ANR xApp
52anrxapp.url.prefix = http://jar-app-props-default-ANR-URL-prefix
53anrxapp.url.suffix =
54# App Manager
55appmgr.url.prefix = http://jar-app-props-default-Xapp-Mgr-URL
56appmgr.url.suffix = /ric/v1
57# E2 Manager
58e2mgr.url.prefix = http://jar-app-props-default-E2-URL
59e2mgr.url.suffix = /v1
60# Kubernetes API via https://github.com/nokia/caas-ingress
61# Set insecure=true to disable SSL certificate and hostname checking
62caasingress.insecure = true
63caasingress.aux.url.prefix = https://jar-app-props-default-caas-ingress-aux-URL
64caasingress.aux.url.suffix = /api
65caasingress.plt.url.prefix = https://jar-app-props-default-caas-ingress-plt-URL
66caasingress.plt.url.suffix = /api
67
68# Mimic slow endpoints by defining sleep period, in milliseconds
69mock.config.delay = 0
70
71# Kibana report on metrics
72metrics.url.ac = http://jar-app-props-kibana-url-ac
73metrics.url.mc = http://jar-app-props-kibana-url-mc