Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
NFV - Network Functions Virtualisation
SOL006
Commits
069f6530
Commit
069f6530
authored
Jun 01, 2022
by
ppree
Browse files
issue
#51
Cloud-Native VNFs OSContainerDesc and minor changes.
parent
d174e8e1
Pipeline
#11654
passed with stage
in 0 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/yang/etsi-nfv-common.yang
View file @
069f6530
...
...
@@ -459,6 +459,20 @@ submodule etsi-nfv-common {
}
}
typedef
scaler-units-size
{
type
enumeration
{
enum
"B"
;
enum
"kB"
;
enum
"KiB"
;
enum
"MB"
;
enum
"MiB"
;
enum
"GB"
;
enum
"GiB"
;
enum
"TB"
;
enum
"TiB"
;
}
}
grouping
nfvi-maintenance-info
{
container
nfvi-maintenance-info
{
...
...
src/yang/etsi-nfv-vnf.yang
View file @
069f6530
...
...
@@ -1217,13 +1217,17 @@ submodule etsi-nfv-vnf {
}
list
extended-resource-requests
{
key
"
key
"
;
key
"
extended-resource amount
"
;
leaf
key
{
leaf
extended-resource
{
type
string
;
description
"The hardware platform specific extended resource."
;
}
leaf
value
{
type
string
;
leaf
amount
{
type
uint32
;
description
"Requested amount of the indicated extended resource."
;
}
description
"An array of key-value pairs of extended resources
...
...
@@ -1265,14 +1269,26 @@ submodule etsi-nfv-vnf {
}
list
huge-page-resources
{
key
"
key
"
;
key
"
hugepage-size
"
;
max-elements
"1"
;
leaf
key
{
type
string
;
leaf
hugepage-size
{
type
uint32
;
description
"Specifies the size of the hugepage."
;
}
leaf
value
{
type
string
;
leaf
requested-size
{
type
uint32
;
description
"Specifies the total size required for all the
hugepages of the size indicated by hugepage-size."
;
}
leaf
size-unit
{
type
scaler-units-size
;
description
"Specifies the unit used for both hugepage-size
and requested-size"
;
}
description
"An array of key-value pairs of HugePages resources
requested for the container, which the container
...
...
@@ -1293,15 +1309,8 @@ submodule etsi-nfv-vnf {
information element."
;
}
list
boot-data
{
key
"key"
;
max-elements
"1"
;
leaf
key
{
type
string
;
}
leaf
value
{
type
string
;
}
leaf
boot-data
{
type
string
;
description
"Contains a string or a URL to a file contained in the VNF
package used to customize a container resource at boot time.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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