Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-AMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-AMF
Commits
16f51582
Commit
16f51582
authored
Feb 15, 2022
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use hardcoded values for UDM info (temp)
parent
a4627f0a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
ci-scripts/dsTesterDockerCompose/docker-compose.tplt
ci-scripts/dsTesterDockerCompose/docker-compose.tplt
+4
-0
etc/amf.conf
etc/amf.conf
+4
-4
scripts/entrypoint.sh
scripts/entrypoint.sh
+1
-0
No files found.
ci-scripts/dsTesterDockerCompose/docker-compose.tplt
View file @
16f51582
...
...
@@ -85,6 +85,10 @@ services:
- AUSF_PORT=80
- AUSF_API_VERSION=v1
- AUSF_FQDN=localhost
- UDM_IPV4_ADDRESS=0.0.0.0
- UDM_PORT=80
- UDM_API_VERSION=v1
- UDM_FQDN=localhost
- NSSF_IPV4_ADDRESS=0.0.0.0
- NSSF_PORT=80
- NSSF_API_VERSION=v1
...
...
etc/amf.conf
View file @
16f51582
...
...
@@ -99,10 +99,10 @@ AMF =
UDM
:
{
IPV4_ADDRESS
=
"
@UDM_IPV4_ADDRESS@
"
;
# YOUR UDM CONFIG HERE
PORT
=
@
UDM_PORT
@;
# YOUR UDM CONFIG HERE (default: 80)
API_VERSION
=
"
@UDM_API_VERSION@"
;
# YOUR UDM API VERSION FOR SBI CONFIG HERE
FQDN
=
"
@UDM_FQDN@"
;
# YOUR UDM FQDN CONFIG HERE
IPV4_ADDRESS
=
"
127.0.0.1
"
;
# YOUR UDM CONFIG HERE
PORT
=
80
;
# YOUR UDM CONFIG HERE (default: 80)
API_VERSION
=
"
v2"
;
# YOUR UDM API VERSION FOR SBI CONFIG HERE
FQDN
=
"
udm-fqdn"
;
# YOUR UDM FQDN CONFIG HERE
#DEFAULT_SINGLE_NSSAIS = [{"sst": 1, "sd":"1"}, {"sst": 2, "sd":"2"}]
};
...
...
scripts/entrypoint.sh
View file @
16f51582
...
...
@@ -7,6 +7,7 @@ CONFIG_DIR="/openair-amf/etc"
# Default values
EXTERNAL_AUSF
=
${
EXTERNAL_AUSF
:-
no
}
EXTERNAL_UDM
=
${
EXTERNAL_UDM
:-
no
}
UDM_IPV4_ADDRESS
=
${
UDM_IPV4_ADDRESS
:-
0
.0.0.0
}
UDM_PORT
=
${
UDM_PORT
:-
80
}
UDM_API_VERSION
=
${
UDM_API_VERSION
:-
v2
}
UDM_FQDN
=
${
UDM_FQDN
:-
oai
-udm
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment