You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current examples make an heavy usage of the ':' character in id and ..._ref fields. But the character : can have multiple meanings, for example in the iperf NSD:
First "ns:input" refers to the element of id ns:input in the current file. So in this case : don't have any signification.
Whereas "vnf_iperf:input" refers to: an element of id input contained in an external file (a VNFD in this case) fetch-able by the vnf_vendor,vnf_name,vnf_version tuple located under the element of vnd_id = vnf_iperf in the current file.
Is my interpretation totally ludicrous or is it voluntary to have multiple way to interpret the connectio_point-ref field ?. It renders the programmability on descriptor a little more complex.
I would propose to ban the : character from any id or name fields so they only appear in the ..._ref fields as a separator. But it may be too risky with the upcoming demo.
The text was updated successfully, but these errors were encountered:
Yep, seems like you found a glitch here .... We have to fix it in the future. In addition to the name of the reference point ID, we have to provide a reference to the descriptor file that contains the ID. For example:
Thus, the first item (that does not contain a vnf_ref field) refers to the local NSD, whereas the second item, refers to the "vnf_iperf" VNF that is identified in the network_functions section.
The current examples make an heavy usage of the
':'
character inid
and..._ref
fields. But the character:
can have multiple meanings, for example in the iperf NSD:First
"ns:input"
refers to the element of idns:input
in the current file. So in this case:
don't have any signification.Whereas
"vnf_iperf:input"
refers to: an element of idinput
contained in an external file (a VNFD in this case) fetch-able by thevnf_vendor
,vnf_name
,vnf_version
tuple located under the element ofvnd_id
=vnf_iperf
in the current file.Is my interpretation totally ludicrous or is it voluntary to have multiple way to interpret the
connectio_point-ref
field ?. It renders the programmability on descriptor a little more complex.I would propose to ban the
:
character from anyid
orname
fields so they only appear in the..._ref
fields as a separator. But it may be too risky with the upcoming demo.The text was updated successfully, but these errors were encountered: