c218757e64915b4bad2f1b9a356af592cd76256c
1 # Copyright 2017-2018 Sandvine
2 # Copyright 2018 Telefonica
6 # Licensed under the Apache License, Version 2.0 (the "License"); you may
7 # not use this file except in compliance with the License. You may obtain
8 # a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 # License for the specific language governing permissions and limitations
22 from osmclient
import client
23 from osmclient
.common
.exceptions
import ClientException
, NotFound
24 from osmclient
.common
.utils
import validate_uuid4
25 from prettytable
import PrettyTable
34 from datetime
import datetime
35 from typing
import Any
, Dict
38 def wrap_text(text
, width
):
39 wrapper
= textwrap
.TextWrapper(width
=width
)
40 lines
= text
.splitlines()
41 return "\n".join(map(wrapper
.fill
, lines
))
44 def trunc_text(text
, length
):
45 if len(text
) > length
:
46 return text
[: (length
- 3)] + "..."
51 def check_client_version(obj
, what
, version
="sol005"):
53 Checks the version of the client object and raises error if it not the expected.
55 :param obj: the client object
56 :what: the function or command under evaluation (used when an error is raised)
58 :raises ClientError: if the specified version does not match the client version
61 fullclassname
= obj
.__module
__ + "." + obj
.__class
__.__name
__
62 message
= 'The following commands or options are only supported with the option "--sol005": {}'.format(
66 message
= 'The following commands or options are not supported when using option "--sol005": {}'.format(
69 if fullclassname
!= "osmclient.{}.client.Client".format(version
):
70 raise ClientException(message
)
74 def get_project(project_list
, item
):
75 # project_list = ctx.obj.project.list()
76 item_project_list
= item
.get("_admin", {}).get("projects_read")
80 for p1
in item_project_list
:
82 for p2
in project_list
:
83 if p2
["_id"] == project_id
:
84 project_name
= p2
["name"]
85 return project_id
, project_name
86 return project_id
, project_name
89 def get_vim_name(vim_list
, vim_id
):
92 if v
["uuid"] == vim_id
:
98 def create_config(config_file
, json_string
):
100 Combines a YAML or JSON file with a JSON string into a Python3 structure
101 It loads the YAML or JSON file 'cfile' into a first dictionary.
102 It loads the JSON string into a second dictionary.
103 Then it updates the first dictionary with the info in the second dictionary.
104 If the field is present in both cfile and cdict, the field in cdict prevails.
105 If both cfile and cdict are None, it returns an empty dict (i.e. {})
109 with
open(config_file
, "r") as cf
:
110 config
= yaml
.safe_load(cf
.read())
112 cdict
= yaml
.safe_load(json_string
)
113 for k
, v
in cdict
.items():
119 context_settings
=dict(help_option_names
=["-h", "--help"], max_content_width
=160)
124 envvar
="OSM_HOSTNAME",
125 help="hostname of server. " + "Also can set OSM_HOSTNAME in environment",
131 help="user (defaults to admin). " + "Also can set OSM_USER in environment",
136 envvar
="OSM_PASSWORD",
137 help="password (defaults to admin). " + "Also can set OSM_PASSWORD in environment",
142 envvar
="OSM_PROJECT",
143 help="project (defaults to admin). " + "Also can set OSM_PROJECT in environment",
149 help="increase verbosity (-v INFO, -vv VERBOSE, -vvv DEBUG)",
151 @click.option("--all-projects", default
=None, is_flag
=True, help="include all projects")
153 "--public/--no-public",
155 help="flag for public items (packages, instances, VIM accounts, etc.)",
158 "--project-domain-name",
159 "project_domain_name",
161 envvar
="OSM_PROJECT_DOMAIN_NAME",
162 help="project domain name for keystone authentication (default to None). "
163 + "Also can set OSM_PROJECT_DOMAIN_NAME in environment",
166 "--user-domain-name",
169 envvar
="OSM_USER_DOMAIN_NAME",
170 help="user domain name for keystone authentication (default to None). "
171 + "Also can set OSM_USER_DOMAIN_NAME in environment",
174 def cli_osm(ctx
, **kwargs
):
176 hostname
= kwargs
.pop("hostname", None)
180 "either hostname option or OSM_HOSTNAME "
181 + "environment variable needs to be specified"
186 kwargs
= {k
: v
for k
, v
in kwargs
.items() if v
is not None}
187 sol005
= os
.getenv("OSM_SOL005", True)
188 ctx
.obj
= client
.Client(host
=hostname
, sol005
=sol005
, **kwargs
)
189 logger
= logging
.getLogger("osmclient")
197 @cli_osm.command(name
="ns-list", short_help
="list all NS instances")
202 help="restricts the list to the NS instances matching the filter.",
207 help="get more details of the NS (project, vim, deployment status, configuration status.",
210 def ns_list(ctx
, filter, long):
211 """list all NS instances
215 --filter filterExpr Restricts the list to the NS instances matching the filter
218 filterExpr consists of one or more strings formatted according to "simpleFilterExpr",
219 concatenated using the "&" character:
222 filterExpr := <simpleFilterExpr>["&"<simpleFilterExpr>]*
223 simpleFilterExpr := <attrName>["."<attrName>]*["."<op>]"="<value>[","<value>]*
224 op := "eq" | "neq" | "gt" | "lt" | "gte" | "lte" | "cont" | "ncont"
226 value := scalar value
230 * zero or more occurrences
231 ? zero or one occurrence
232 [] grouping of expressions to be used with ? and *
233 "" quotation marks for marking string constants
237 "AttrName" is the name of one attribute in the data type that defines the representation
238 of the resource. The dot (".") character in "simpleFilterExpr" allows concatenation of
239 <attrName> entries to filter by attributes deeper in the hierarchy of a structured document.
240 "Op" stands for the comparison operator. If the expression has concatenated <attrName>
241 entries, it means that the operator "op" is applied to the attribute addressed by the last
242 <attrName> entry included in the concatenation. All simple filter expressions are combined
243 by the "AND" logical operator. In a concatenation of <attrName> entries in a <simpleFilterExpr>,
244 the rightmost "attrName" entry in a "simpleFilterExpr" is called "leaf attribute". The
245 concatenation of all "attrName" entries except the leaf attribute is called the "attribute
246 prefix". If an attribute referenced in an expression is an array, an object that contains a
247 corresponding array shall be considered to match the expression if any of the elements in the
248 array matches all expressions that have the same attribute prefix.
252 --filter admin-status=ENABLED
253 --filter nsd-ref=<NSD_NAME>
254 --filter nsd.vendor=<VENDOR>
255 --filter nsd.vendor=<VENDOR>&nsd-ref=<NSD_NAME>
256 --filter nsd.constituent-vnfd.vnfd-id-ref=<VNFD_NAME>
259 def summarize_deployment_status(status_dict
):
266 net_list
= status_dict
.get("nets", [])
269 if net
["status"] not in status_nets
:
270 status_nets
[net
["status"]] = 1
272 status_nets
[net
["status"]] += 1
274 for k
, v
in status_nets
.items():
275 message
+= "{}:{},".format(k
, v
)
276 message
+= "TOTAL:{}".format(n_nets
)
277 summary
+= "{}".format(message
)
282 vnf_list
= status_dict
["vnfs"]
284 member_vnf_index
= vnf
["member_vnf_index"]
285 if member_vnf_index
not in status_vnfs
:
286 status_vnfs
[member_vnf_index
] = {}
287 for vm
in vnf
["vms"]:
289 if vm
["status"] not in status_vms
:
290 status_vms
[vm
["status"]] = 1
292 status_vms
[vm
["status"]] += 1
293 if vm
["status"] not in status_vnfs
[member_vnf_index
]:
294 status_vnfs
[member_vnf_index
][vm
["status"]] = 1
296 status_vnfs
[member_vnf_index
][vm
["status"]] += 1
298 for k
, v
in status_vms
.items():
299 message
+= "{}:{},".format(k
, v
)
300 message
+= "TOTAL:{}".format(n_vms
)
301 summary
+= "\n{}".format(message
)
303 for k
, v
in status_vnfs
.items():
305 message
= "\n {} VMs: ".format(k
)
306 for k2
, v2
in v
.items():
307 message
+= "{}:{},".format(k2
, v2
)
309 message
+= "TOTAL:{}".format(total
)
313 def summarize_config_status(ee_list
):
321 if ee
["elementType"] not in status_ee
:
322 status_ee
[ee
["elementType"]] = {}
323 status_ee
[ee
["elementType"]][ee
["status"]] = 1
325 if ee
["status"] in status_ee
[ee
["elementType"]]:
326 status_ee
[ee
["elementType"]][ee
["status"]] += 1
328 status_ee
[ee
["elementType"]][ee
["status"]] = 1
329 for elementType
in ["KDU", "VDU", "PDU", "VNF", "NS"]:
330 if elementType
in status_ee
:
333 for k
, v
in status_ee
[elementType
].items():
334 message
+= "{}:{},".format(k
, v
)
336 message
+= "TOTAL:{}\n".format(total
)
337 summary
+= "{}: {}".format(elementType
, message
)
338 summary
+= "TOTAL Exec. Env.: {}".format(n_ee
)
343 check_client_version(ctx
.obj
, "--filter")
344 filter = "&".join(filter)
345 resp
= ctx
.obj
.ns
.list(filter)
347 resp
= ctx
.obj
.ns
.list()
360 "configuration status",
363 project_list
= ctx
.obj
.project
.list()
365 vim_list
= ctx
.obj
.vim
.list()
380 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
381 if fullclassname
== "osmclient.sol005.client.Client":
383 logger
.debug("NS info: {}".format(nsr
))
384 nsr_name
= nsr
["name"]
386 date
= datetime
.fromtimestamp(nsr
["create-time"]).strftime(
389 ns_state
= nsr
.get("nsState", nsr
["_admin"]["nsState"])
391 deployment_status
= summarize_deployment_status(
392 nsr
.get("deploymentStatus")
394 config_status
= summarize_config_status(nsr
.get("configurationStatus"))
395 project_id
, project_name
= get_project(project_list
, nsr
)
396 # project = '{} ({})'.format(project_name, project_id)
397 project
= project_name
398 vim_id
= nsr
.get("datacenter")
399 vim_name
= get_vim_name(vim_list
, vim_id
)
401 # vim = '{} ({})'.format(vim_name, vim_id)
403 if "currentOperation" in nsr
:
404 current_operation
= "{} ({})".format(
405 nsr
["currentOperation"], nsr
["currentOperationID"]
408 current_operation
= "{} ({})".format(
409 nsr
["_admin"].get("current-operation", "-"),
410 nsr
["_admin"]["nslcmop"],
412 error_details
= "N/A"
415 or ns_state
== "DEGRADED"
416 or ("currentOperation" not in nsr
and nsr
.get("errorDescription"))
418 error_details
= "{}\nDetail: {}".format(
419 nsr
["errorDescription"], nsr
["errorDetail"]
422 nsopdata
= ctx
.obj
.ns
.get_opdata(ns
["id"])
423 nsr
= nsopdata
["nsr:nsr"]
424 nsr_name
= nsr
["name-ref"]
425 nsr_id
= nsr
["ns-instance-config-ref"]
428 deployment_status
= (
429 nsr
["operational-status"]
430 if "operational-status" in nsr
433 ns_state
= deployment_status
434 config_status
= nsr
.get("config-status", "Not found")
435 current_operation
= "Unknown"
436 error_details
= nsr
.get("detailed-status", "Not found")
437 if config_status
== "config_not_needed":
438 config_status
= "configured (no charms)"
448 wrap_text(text
=error_details
, width
=40),
463 wrap_text(text
=error_details
, width
=40),
468 print('To get the history of all operations over a NS, run "osm ns-op-list NS_ID"')
470 'For more details on the current operation, run "osm ns-op-show OPERATION_ID"'
474 def nsd_list(ctx
, filter, long):
477 check_client_version(ctx
.obj
, "--filter")
478 filter = "&".join(filter)
479 resp
= ctx
.obj
.nsd
.list(filter)
481 resp
= ctx
.obj
.nsd
.list()
482 # print(yaml.safe_dump(resp))
483 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
484 if fullclassname
== "osmclient.sol005.client.Client":
498 table
= PrettyTable(["nsd name", "id"])
500 name
= nsd
.get("id", "-")
502 onb_state
= nsd
["_admin"].get("onboardingState", "-")
503 op_state
= nsd
["_admin"].get("operationalState", "-")
504 usage_state
= nsd
["_admin"].get("usageState", "-")
505 date
= datetime
.fromtimestamp(nsd
["_admin"]["created"]).strftime(
508 last_update
= datetime
.fromtimestamp(
509 nsd
["_admin"]["modified"]
510 ).strftime("%Y-%m-%dT%H:%M:%S")
523 table
.add_row([name
, nsd
["_id"]])
525 table
= PrettyTable(["nsd name", "id"])
527 table
.add_row([nsd
["name"], nsd
["id"]])
532 @cli_osm.command(name
="nsd-list", short_help
="list all NS packages")
537 help="restricts the list to the NSD/NSpkg matching the filter",
539 @click.option("--long", is_flag
=True, help="get more details")
541 def nsd_list1(ctx
, filter, long):
542 """list all NSD/NS pkg in the system"""
544 nsd_list(ctx
, filter, long)
547 @cli_osm.command(name
="nspkg-list", short_help
="list all NS packages")
552 help="restricts the list to the NSD/NSpkg matching the filter",
554 @click.option("--long", is_flag
=True, help="get more details")
556 def nsd_list2(ctx
, filter, long):
557 """list all NS packages"""
559 nsd_list(ctx
, filter, long)
562 def pkg_repo_list(ctx
, pkgtype
, filter, repo
, long):
563 resp
= ctx
.obj
.osmrepo
.pkg_list(pkgtype
, filter, repo
)
566 ["nfpkg name", "vendor", "version", "latest", "description", "repository"]
569 table
= PrettyTable(["nfpkg name", "repository"])
571 name
= vnfd
.get("id", vnfd
.get("name", "-"))
572 repository
= vnfd
.get("repository")
574 vendor
= vnfd
.get("provider", vnfd
.get("vendor"))
575 version
= vnfd
.get("version")
576 description
= vnfd
.get("description")
577 latest
= vnfd
.get("latest")
578 table
.add_row([name
, vendor
, version
, latest
, description
, repository
])
580 table
.add_row([name
, repository
])
585 def vnfd_list(ctx
, nf_type
, filter, long):
588 check_client_version(ctx
.obj
, "--nf_type")
590 check_client_version(ctx
.obj
, "--filter")
592 filter = "&".join(filter)
595 nf_filter
= "_admin.type=vnfd"
596 elif nf_type
== "pnf":
597 nf_filter
= "_admin.type=pnfd"
598 elif nf_type
== "hnf":
599 nf_filter
= "_admin.type=hnfd"
601 raise ClientException(
602 'wrong value for "--nf_type" option, allowed values: vnf, pnf, hnf'
605 filter = "{}&{}".format(nf_filter
, filter)
609 resp
= ctx
.obj
.vnfd
.list(filter)
611 resp
= ctx
.obj
.vnfd
.list()
612 # print(yaml.safe_dump(resp))
613 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
614 if fullclassname
== "osmclient.sol005.client.Client":
631 table
= PrettyTable(["nfpkg name", "id", "desc type"])
633 name
= vnfd
.get("id", vnfd
.get("name", "-"))
634 descriptor_type
= "sol006" if "product-name" in vnfd
else "rel8"
636 onb_state
= vnfd
["_admin"].get("onboardingState", "-")
637 op_state
= vnfd
["_admin"].get("operationalState", "-")
638 vendor
= vnfd
.get("provider", vnfd
.get("vendor"))
639 version
= vnfd
.get("version")
640 usage_state
= vnfd
["_admin"].get("usageState", "-")
641 date
= datetime
.fromtimestamp(vnfd
["_admin"]["created"]).strftime(
644 last_update
= datetime
.fromtimestamp(
645 vnfd
["_admin"]["modified"]
646 ).strftime("%Y-%m-%dT%H:%M:%S")
662 table
.add_row([name
, vnfd
["_id"], descriptor_type
])
664 table
= PrettyTable(["nfpkg name", "id"])
666 table
.add_row([vnfd
["name"], vnfd
["id"]])
671 @cli_osm.command(name
="vnfd-list", short_help
="list all xNF packages (VNF, HNF, PNF)")
672 @click.option("--nf_type", help="type of NF (vnf, pnf, hnf)")
677 help="restricts the list to the NF pkg matching the filter",
679 @click.option("--long", is_flag
=True, help="get more details")
681 def vnfd_list1(ctx
, nf_type
, filter, long):
682 """list all xNF packages (VNF, HNF, PNF)"""
684 vnfd_list(ctx
, nf_type
, filter, long)
687 @cli_osm.command(name
="vnfpkg-list", short_help
="list all xNF packages (VNF, HNF, PNF)")
688 @click.option("--nf_type", help="type of NF (vnf, pnf, hnf)")
693 help="restricts the list to the NFpkg matching the filter",
695 @click.option("--long", is_flag
=True, help="get more details")
697 def vnfd_list2(ctx
, nf_type
, filter, long):
698 """list all xNF packages (VNF, HNF, PNF)"""
700 vnfd_list(ctx
, nf_type
, filter, long)
703 @cli_osm.command(name
="nfpkg-list", short_help
="list all xNF packages (VNF, HNF, PNF)")
704 @click.option("--nf_type", help="type of NF (vnf, pnf, hnf)")
709 help="restricts the list to the NFpkg matching the filter",
711 @click.option("--long", is_flag
=True, help="get more details")
713 def nfpkg_list(ctx
, nf_type
, filter, long):
714 """list all xNF packages (VNF, HNF, PNF)"""
717 check_client_version(ctx
.obj
, ctx
.command
.name
)
718 vnfd_list(ctx
, nf_type
, filter, long)
719 # except ClientException as e:
725 name
="vnfpkg-repo-list", short_help
="list all xNF from OSM repositories"
731 help="restricts the list to the NFpkg matching the filter",
734 "--repo", default
=None, help="restricts the list to a particular OSM repository"
736 @click.option("--long", is_flag
=True, help="get more details")
738 def nfpkg_repo_list1(ctx
, filter, repo
, long):
739 """list xNF packages from OSM repositories"""
741 pkg_repo_list(ctx
, pkgtype
, filter, repo
, long)
745 name
="nfpkg-repo-list", short_help
="list all xNF from OSM repositories"
751 help="restricts the list to the NFpkg matching the filter",
754 "--repo", default
=None, help="restricts the list to a particular OSM repository"
756 @click.option("--long", is_flag
=True, help="get more details")
758 def nfpkg_repo_list2(ctx
, filter, repo
, long):
759 """list xNF packages from OSM repositories"""
761 pkg_repo_list(ctx
, pkgtype
, filter, repo
, long)
764 def vnf_list(ctx
, ns
, filter, long):
768 check_client_version(ctx
.obj
, "--ns")
770 filter = "&".join(filter)
771 check_client_version(ctx
.obj
, "--filter")
772 resp
= ctx
.obj
.vnf
.list(ns
, filter)
774 resp
= ctx
.obj
.vnf
.list()
775 # except ClientException as e:
778 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
779 if fullclassname
== "osmclient.sol005.client.Client":
801 table
= PrettyTable(field_names
)
803 name
= vnfr
["name"] if "name" in vnfr
else "-"
808 vnfr
["member-vnf-index-ref"],
810 vnfr
["vim-account-id"],
814 date
= datetime
.fromtimestamp(vnfr
["_admin"]["created"]).strftime(
817 last_update
= datetime
.fromtimestamp(
818 vnfr
["_admin"]["modified"]
819 ).strftime("%Y-%m-%dT%H:%M:%S")
820 new_row
.extend([date
, last_update
])
821 table
.add_row(new_row
)
823 table
= PrettyTable(["vnf name", "id", "operational status", "config status"])
825 if "mgmt-interface" not in vnfr
:
826 vnfr
["mgmt-interface"] = {}
827 vnfr
["mgmt-interface"]["ip-address"] = None
832 vnfr
["operational-status"],
833 vnfr
["config-status"],
840 @cli_osm.command(name
="vnf-list", short_help
="list all NF instances")
842 "--ns", default
=None, help="NS instance id or name to restrict the NF list"
848 help="restricts the list to the NF instances matching the filter.",
850 @click.option("--long", is_flag
=True, help="get more details")
852 def vnf_list1(ctx
, ns
, filter, long):
853 """list all NF instances"""
855 vnf_list(ctx
, ns
, filter, long)
858 @cli_osm.command(name
="nsd-repo-list", short_help
="list all NS from OSM repositories")
863 help="restricts the list to the NS matching the filter",
866 "--repo", default
=None, help="restricts the list to a particular OSM repository"
868 @click.option("--long", is_flag
=True, help="get more details")
870 def nspkg_repo_list(ctx
, filter, repo
, long):
871 """list xNF packages from OSM repositories"""
873 pkg_repo_list(ctx
, pkgtype
, filter, repo
, long)
876 @cli_osm.command(name
="nspkg-repo-list", short_help
="list all NS from OSM repositories")
881 help="restricts the list to the NS matching the filter",
884 "--repo", default
=None, help="restricts the list to a particular OSM repository"
886 @click.option("--long", is_flag
=True, help="get more details")
888 def nspkg_repo_list2(ctx
, filter, repo
, long):
889 """list xNF packages from OSM repositories"""
891 pkg_repo_list(ctx
, pkgtype
, filter, repo
, long)
894 @cli_osm.command(name
="nf-list", short_help
="list all NF instances")
896 "--ns", default
=None, help="NS instance id or name to restrict the NF list"
902 help="restricts the list to the NF instances matching the filter.",
904 @click.option("--long", is_flag
=True, help="get more details")
906 def nf_list(ctx
, ns
, filter, long):
907 """list all NF instances
911 --ns TEXT NS instance id or name to restrict the VNF list
912 --filter filterExpr Restricts the list to the VNF instances matching the filter
915 filterExpr consists of one or more strings formatted according to "simpleFilterExpr",
916 concatenated using the "&" character:
919 filterExpr := <simpleFilterExpr>["&"<simpleFilterExpr>]*
920 simpleFilterExpr := <attrName>["."<attrName>]*["."<op>]"="<value>[","<value>]*
921 op := "eq" | "neq" | "gt" | "lt" | "gte" | "lte" | "cont" | "ncont"
923 value := scalar value
927 * zero or more occurrences
928 ? zero or one occurrence
929 [] grouping of expressions to be used with ? and *
930 "" quotation marks for marking string constants
934 "AttrName" is the name of one attribute in the data type that defines the representation
935 of the resource. The dot (".") character in "simpleFilterExpr" allows concatenation of
936 <attrName> entries to filter by attributes deeper in the hierarchy of a structured document.
937 "Op" stands for the comparison operator. If the expression has concatenated <attrName>
938 entries, it means that the operator "op" is applied to the attribute addressed by the last
939 <attrName> entry included in the concatenation. All simple filter expressions are combined
940 by the "AND" logical operator. In a concatenation of <attrName> entries in a <simpleFilterExpr>,
941 the rightmost "attrName" entry in a "simpleFilterExpr" is called "leaf attribute". The
942 concatenation of all "attrName" entries except the leaf attribute is called the "attribute
943 prefix". If an attribute referenced in an expression is an array, an object that contains a
944 corresponding array shall be considered to match the expression if any of the elements in the
945 array matches all expressions that have the same attribute prefix.
949 --filter vim-account-id=<VIM_ACCOUNT_ID>
950 --filter vnfd-ref=<VNFD_NAME>
951 --filter vdur.ip-address=<IP_ADDRESS>
952 --filter vnfd-ref=<VNFD_NAME>,vdur.ip-address=<IP_ADDRESS>
955 vnf_list(ctx
, ns
, filter, long)
959 name
="ns-op-list", short_help
="shows the history of operations over a NS instance"
961 @click.argument("name")
963 "--long", is_flag
=True, help="get more details of the NS operation (date, )."
966 def ns_op_list(ctx
, name
, long):
967 """shows the history of operations over a NS instance
969 NAME: name or ID of the NS instance
972 def formatParams(params
):
973 if params
["lcmOperationType"] == "instantiate":
974 params
.pop("nsDescription")
978 elif params
["lcmOperationType"] == "action":
979 params
.pop("primitive")
980 params
.pop("lcmOperationType")
981 params
.pop("nsInstanceId")
986 check_client_version(ctx
.obj
, ctx
.command
.name
)
987 resp
= ctx
.obj
.ns
.list_op(name
)
988 # except ClientException as e:
1006 table
= PrettyTable(
1007 ["id", "operation", "action_name", "status", "date", "detail"]
1010 # print(yaml.safe_dump(resp))
1013 if op
["lcmOperationType"] == "action":
1014 action_name
= op
["operationParams"]["primitive"]
1016 if op
["operationState"] == "PROCESSING":
1017 if op
["queuePosition"] is not None and op
["queuePosition"] > 0:
1018 detail
= "In queue. Current position: {}".format(op
["queuePosition"])
1019 elif op
["lcmOperationType"] in ("instantiate", "terminate"):
1021 detail
= op
["stage"]
1022 elif op
["operationState"] in ("FAILED", "FAILED_TEMP"):
1023 detail
= op
.get("errorMessage", "-")
1024 date
= datetime
.fromtimestamp(op
["startTime"]).strftime("%Y-%m-%dT%H:%M:%S")
1025 last_update
= datetime
.fromtimestamp(op
["statusEnteredTime"]).strftime(
1032 op
["lcmOperationType"],
1035 text
=json
.dumps(formatParams(op
["operationParams"]), indent
=2),
1038 op
["operationState"],
1041 wrap_text(text
=detail
, width
=50),
1048 op
["lcmOperationType"],
1050 op
["operationState"],
1052 wrap_text(text
=detail
or "", width
=50),
1059 def nsi_list(ctx
, filter):
1060 """list all Network Slice Instances"""
1063 check_client_version(ctx
.obj
, ctx
.command
.name
)
1065 filter = "&".join(filter)
1066 resp
= ctx
.obj
.nsi
.list(filter)
1067 # except ClientException as e:
1070 table
= PrettyTable(
1072 "netslice instance name",
1074 "operational status",
1080 nsi_name
= nsi
["name"]
1083 nsi
["operational-status"] if "operational-status" in nsi
else "Not found"
1085 configstatus
= nsi
["config-status"] if "config-status" in nsi
else "Not found"
1087 nsi
["detailed-status"] if "detailed-status" in nsi
else "Not found"
1089 if configstatus
== "config_not_needed":
1090 configstatus
= "configured (no charms)"
1091 table
.add_row([nsi_name
, nsi_id
, opstatus
, configstatus
, detailed_status
])
1096 @cli_osm.command(name
="nsi-list", short_help
="list all Network Slice Instances (NSI)")
1101 help="restricts the list to the Network Slice Instances matching the filter",
1104 def nsi_list1(ctx
, filter):
1105 """list all Network Slice Instances (NSI)"""
1107 nsi_list(ctx
, filter)
1111 name
="netslice-instance-list", short_help
="list all Network Slice Instances (NSI)"
1117 help="restricts the list to the Network Slice Instances matching the filter",
1120 def nsi_list2(ctx
, filter):
1121 """list all Network Slice Instances (NSI)"""
1123 nsi_list(ctx
, filter)
1126 def nst_list(ctx
, filter):
1129 check_client_version(ctx
.obj
, ctx
.command
.name
)
1131 filter = "&".join(filter)
1132 resp
= ctx
.obj
.nst
.list(filter)
1133 # except ClientException as e:
1136 # print(yaml.safe_dump(resp))
1137 table
= PrettyTable(["nst name", "id"])
1139 name
= nst
["name"] if "name" in nst
else "-"
1140 table
.add_row([name
, nst
["_id"]])
1145 @cli_osm.command(name
="nst-list", short_help
="list all Network Slice Templates (NST)")
1150 help="restricts the list to the NST matching the filter",
1153 def nst_list1(ctx
, filter):
1154 """list all Network Slice Templates (NST) in the system"""
1156 nst_list(ctx
, filter)
1160 name
="netslice-template-list", short_help
="list all Network Slice Templates (NST)"
1166 help="restricts the list to the NST matching the filter",
1169 def nst_list2(ctx
, filter):
1170 """list all Network Slice Templates (NST) in the system"""
1172 nst_list(ctx
, filter)
1175 def nsi_op_list(ctx
, name
):
1178 check_client_version(ctx
.obj
, ctx
.command
.name
)
1179 resp
= ctx
.obj
.nsi
.list_op(name
)
1180 # except ClientException as e:
1183 table
= PrettyTable(["id", "operation", "status"])
1185 table
.add_row([op
["id"], op
["lcmOperationType"], op
["operationState"]])
1192 short_help
="shows the history of operations over a Network Slice Instance (NSI)",
1194 @click.argument("name")
1196 def nsi_op_list1(ctx
, name
):
1197 """shows the history of operations over a Network Slice Instance (NSI)
1199 NAME: name or ID of the Network Slice Instance
1202 nsi_op_list(ctx
, name
)
1206 name
="netslice-instance-op-list",
1207 short_help
="shows the history of operations over a Network Slice Instance (NSI)",
1209 @click.argument("name")
1211 def nsi_op_list2(ctx
, name
):
1212 """shows the history of operations over a Network Slice Instance (NSI)
1214 NAME: name or ID of the Network Slice Instance
1217 nsi_op_list(ctx
, name
)
1220 @cli_osm.command(name
="pdu-list", short_help
="list all Physical Deployment Units (PDU)")
1225 help="restricts the list to the Physical Deployment Units matching the filter",
1228 def pdu_list(ctx
, filter):
1229 """list all Physical Deployment Units (PDU)"""
1232 check_client_version(ctx
.obj
, ctx
.command
.name
)
1234 filter = "&".join(filter)
1235 resp
= ctx
.obj
.pdu
.list(filter)
1236 # except ClientException as e:
1239 table
= PrettyTable(["pdu name", "id", "type", "mgmt ip address"])
1241 pdu_name
= pdu
["name"]
1243 pdu_type
= pdu
["type"]
1244 pdu_ipaddress
= "None"
1245 for iface
in pdu
["interfaces"]:
1247 pdu_ipaddress
= iface
["ip-address"]
1249 table
.add_row([pdu_name
, pdu_id
, pdu_type
, pdu_ipaddress
])
1254 ####################
1256 ####################
1259 def nsd_show(ctx
, name
, literal
):
1262 resp
= ctx
.obj
.nsd
.get(name
)
1263 # resp = ctx.obj.nsd.get_individual(name)
1264 # except ClientException as e:
1269 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
1272 table
= PrettyTable(["field", "value"])
1273 for k
, v
in list(resp
.items()):
1274 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
1279 @cli_osm.command(name
="nsd-show", short_help
="shows the details of a NS package")
1280 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1281 @click.argument("name")
1283 def nsd_show1(ctx
, name
, literal
):
1284 """shows the content of a NSD
1286 NAME: name or ID of the NSD/NSpkg
1289 nsd_show(ctx
, name
, literal
)
1292 @cli_osm.command(name
="nspkg-show", short_help
="shows the details of a NS package")
1293 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1294 @click.argument("name")
1296 def nsd_show2(ctx
, name
, literal
):
1297 """shows the content of a NSD
1299 NAME: name or ID of the NSD/NSpkg
1302 nsd_show(ctx
, name
, literal
)
1305 def vnfd_show(ctx
, name
, literal
):
1308 resp
= ctx
.obj
.vnfd
.get(name
)
1309 # resp = ctx.obj.vnfd.get_individual(name)
1310 # except ClientException as e:
1315 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
1318 table
= PrettyTable(["field", "value"])
1319 for k
, v
in list(resp
.items()):
1320 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
1325 def pkg_repo_show(ctx
, pkgtype
, name
, repo
, version
, filter, literal
):
1328 filter = "&".join(filter)
1330 resp
= ctx
.obj
.osmrepo
.pkg_get(pkgtype
, name
, repo
, version
, filter)
1333 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
1336 catalog
= pkgtype
+ "-catalog"
1337 full_catalog
= pkgtype
+ ":" + catalog
1338 if resp
.get(catalog
):
1339 resp
= resp
.pop(catalog
)[pkgtype
][0]
1340 elif resp
.get(full_catalog
):
1341 resp
= resp
.pop(full_catalog
)[pkgtype
][0]
1343 table
= PrettyTable(["field", "value"])
1344 for k
, v
in list(resp
.items()):
1345 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
1350 @cli_osm.command(name
="vnfd-show", short_help
="shows the details of a NF package")
1351 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1352 @click.argument("name")
1354 def vnfd_show1(ctx
, name
, literal
):
1355 """shows the content of a VNFD
1357 NAME: name or ID of the VNFD/VNFpkg
1360 vnfd_show(ctx
, name
, literal
)
1363 @cli_osm.command(name
="vnfpkg-show", short_help
="shows the details of a NF package")
1364 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1365 @click.argument("name")
1367 def vnfd_show2(ctx
, name
, literal
):
1368 """shows the content of a VNFD
1370 NAME: name or ID of the VNFD/VNFpkg
1373 vnfd_show(ctx
, name
, literal
)
1377 name
="vnfpkg-repo-show",
1378 short_help
="shows the details of a NF package in an OSM repository",
1380 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1381 @click.option("--repo", required
=True, help="Repository name")
1382 @click.argument("name")
1383 @click.option("--filter", default
=None, multiple
=True, help="filter by fields")
1384 @click.option("--version", default
="latest", help="package version")
1386 def vnfd_show3(ctx
, name
, repo
, version
, literal
=None, filter=None):
1387 """shows the content of a VNFD in a repository
1389 NAME: name or ID of the VNFD/VNFpkg
1392 pkg_repo_show(ctx
, pkgtype
, name
, repo
, version
, filter, literal
)
1396 name
="nsd-repo-show",
1397 short_help
="shows the details of a NS package in an OSM repository",
1399 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1400 @click.option("--repo", required
=True, help="Repository name")
1401 @click.argument("name")
1402 @click.option("--filter", default
=None, multiple
=True, help="filter by fields")
1403 @click.option("--version", default
="latest", help="package version")
1405 def nsd_repo_show(ctx
, name
, repo
, version
, literal
=None, filter=None):
1406 """shows the content of a VNFD in a repository
1408 NAME: name or ID of the VNFD/VNFpkg
1411 pkg_repo_show(ctx
, pkgtype
, name
, repo
, version
, filter, literal
)
1415 name
="nspkg-repo-show",
1416 short_help
="shows the details of a NS package in an OSM repository",
1418 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1419 @click.option("--repo", required
=True, help="Repository name")
1420 @click.argument("name")
1421 @click.option("--filter", default
=None, multiple
=True, help="filter by fields")
1422 @click.option("--version", default
="latest", help="package version")
1424 def nsd_repo_show2(ctx
, name
, repo
, version
, literal
=None, filter=None):
1425 """shows the content of a VNFD in a repository
1427 NAME: name or ID of the VNFD/VNFpkg
1430 pkg_repo_show(ctx
, pkgtype
, name
, repo
, version
, filter, literal
)
1433 @cli_osm.command(name
="nfpkg-show", short_help
="shows the details of a NF package")
1434 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1435 @click.argument("name")
1437 def nfpkg_show(ctx
, name
, literal
):
1438 """shows the content of a NF Descriptor
1440 NAME: name or ID of the NFpkg
1443 vnfd_show(ctx
, name
, literal
)
1447 name
="nfpkg-repo-show",
1448 short_help
="shows the details of a NF package in an OSM repository",
1450 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1451 @click.option("--repo", required
=True, help="Repository name")
1452 @click.argument("name")
1453 @click.option("--filter", default
=None, multiple
=True, help="filter by fields")
1454 @click.option("--version", default
="latest", help="package version")
1456 def vnfd_show4(ctx
, name
, repo
, version
, literal
=None, filter=None):
1457 """shows the content of a VNFD in a repository
1459 NAME: name or ID of the VNFD/VNFpkg
1462 pkg_repo_show(ctx
, pkgtype
, name
, repo
, version
, filter, literal
)
1465 @cli_osm.command(name
="ns-show", short_help
="shows the info of a NS instance")
1466 @click.argument("name")
1467 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1471 help="restricts the information to the fields in the filter",
1474 def ns_show(ctx
, name
, literal
, filter):
1475 """shows the info of a NS instance
1477 NAME: name or ID of the NS instance
1481 ns
= ctx
.obj
.ns
.get(name
)
1482 # except ClientException as e:
1487 print(yaml
.safe_dump(ns
, indent
=4, default_flow_style
=False))
1490 table
= PrettyTable(["field", "value"])
1492 for k
, v
in list(ns
.items()):
1493 if not filter or k
in filter:
1494 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
1496 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
1497 if fullclassname
!= "osmclient.sol005.client.Client":
1498 nsopdata
= ctx
.obj
.ns
.get_opdata(ns
["id"])
1499 nsr_optdata
= nsopdata
["nsr:nsr"]
1500 for k
, v
in list(nsr_optdata
.items()):
1501 if not filter or k
in filter:
1502 table
.add_row([k
, wrap_text(json
.dumps(v
, indent
=2), width
=100)])
1507 @cli_osm.command(name
="vnf-show", short_help
="shows the info of a VNF instance")
1508 @click.argument("name")
1509 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1513 help="restricts the information to the fields in the filter",
1515 @click.option("--kdu", default
=None, help="KDU name (whose status will be shown)")
1517 def vnf_show(ctx
, name
, literal
, filter, kdu
):
1518 """shows the info of a VNF instance
1520 NAME: name or ID of the VNF instance
1523 def print_kdu_status(op_info_status
):
1524 """print KDU status properly formatted"""
1526 op_status
= yaml
.safe_load(op_info_status
)
1528 "namespace" in op_status
1529 and "info" in op_status
1530 and "last_deployed" in op_status
["info"]
1531 and "status" in op_status
["info"]
1532 and "code" in op_status
["info"]["status"]
1533 and "resources" in op_status
["info"]["status"]
1534 and "seconds" in op_status
["info"]["last_deployed"]
1536 last_deployed_time
= datetime
.fromtimestamp(
1537 op_status
["info"]["last_deployed"]["seconds"]
1538 ).strftime("%a %b %d %I:%M:%S %Y")
1539 print("LAST DEPLOYED: {}".format(last_deployed_time
))
1540 print("NAMESPACE: {}".format(op_status
["namespace"]))
1541 status_code
= "UNKNOWN"
1542 if op_status
["info"]["status"]["code"] == 1:
1543 status_code
= "DEPLOYED"
1544 print("STATUS: {}".format(status_code
))
1547 print(op_status
["info"]["status"]["resources"])
1548 if "notes" in op_status
["info"]["status"]:
1550 print(op_status
["info"]["status"]["notes"])
1552 print(op_info_status
)
1554 print(op_info_status
)
1559 raise ClientException(
1560 '"--literal" option is incompatible with "--kdu" option'
1563 raise ClientException(
1564 '"--filter" option is incompatible with "--kdu" option'
1568 check_client_version(ctx
.obj
, ctx
.command
.name
)
1569 resp
= ctx
.obj
.vnf
.get(name
)
1572 ns_id
= resp
["nsr-id-ref"]
1574 op_data
["member_vnf_index"] = resp
["member-vnf-index-ref"]
1575 op_data
["kdu_name"] = kdu
1576 op_data
["primitive"] = "status"
1577 op_data
["primitive_params"] = {}
1578 op_id
= ctx
.obj
.ns
.exec_op(ns_id
, op_name
="action", op_data
=op_data
, wait
=False)
1581 op_info
= ctx
.obj
.ns
.get_op(op_id
)
1582 if op_info
["operationState"] == "COMPLETED":
1583 print_kdu_status(op_info
["detailed-status"])
1587 print("Could not determine KDU status")
1591 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
1594 table
= PrettyTable(["field", "value"])
1595 for k
, v
in list(resp
.items()):
1596 if not filter or k
in filter:
1597 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
1600 # except ClientException as e:
1605 # @cli_osm.command(name='vnf-monitoring-show')
1606 # @click.argument('vnf_name')
1607 # @click.pass_context
1608 # def vnf_monitoring_show(ctx, vnf_name):
1610 # check_client_version(ctx.obj, ctx.command.name, 'v1')
1611 # resp = ctx.obj.vnf.get_monitoring(vnf_name)
1612 # except ClientException as e:
1616 # table = PrettyTable(['vnf name', 'monitoring name', 'value', 'units'])
1617 # if resp is not None:
1618 # for monitor in resp:
1622 # monitor['value-integer'],
1623 # monitor['units']])
1628 # @cli_osm.command(name='ns-monitoring-show')
1629 # @click.argument('ns_name')
1630 # @click.pass_context
1631 # def ns_monitoring_show(ctx, ns_name):
1633 # check_client_version(ctx.obj, ctx.command.name, 'v1')
1634 # resp = ctx.obj.ns.get_monitoring(ns_name)
1635 # except ClientException as e:
1639 # table = PrettyTable(['vnf name', 'monitoring name', 'value', 'units'])
1640 # for key, val in list(resp.items()):
1641 # for monitor in val:
1645 # monitor['value-integer'],
1646 # monitor['units']])
1651 @cli_osm.command(name
="ns-op-show", short_help
="shows the info of a NS operation")
1652 @click.argument("id")
1656 help="restricts the information to the fields in the filter",
1658 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1660 def ns_op_show(ctx
, id, filter, literal
):
1661 """shows the detailed info of a NS operation
1663 ID: operation identifier
1667 check_client_version(ctx
.obj
, ctx
.command
.name
)
1668 op_info
= ctx
.obj
.ns
.get_op(id)
1669 # except ClientException as e:
1674 print(yaml
.safe_dump(op_info
, indent
=4, default_flow_style
=False))
1677 table
= PrettyTable(["field", "value"])
1678 for k
, v
in list(op_info
.items()):
1679 if not filter or k
in filter:
1680 table
.add_row([k
, wrap_text(json
.dumps(v
, indent
=2), 100)])
1685 def nst_show(ctx
, name
, literal
):
1688 check_client_version(ctx
.obj
, ctx
.command
.name
)
1689 resp
= ctx
.obj
.nst
.get(name
)
1690 # resp = ctx.obj.nst.get_individual(name)
1691 # except ClientException as e:
1696 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
1699 table
= PrettyTable(["field", "value"])
1700 for k
, v
in list(resp
.items()):
1701 table
.add_row([k
, wrap_text(json
.dumps(v
, indent
=2), 100)])
1707 name
="nst-show", short_help
="shows the content of a Network Slice Template (NST)"
1709 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1710 @click.argument("name")
1712 def nst_show1(ctx
, name
, literal
):
1713 """shows the content of a Network Slice Template (NST)
1715 NAME: name or ID of the NST
1718 nst_show(ctx
, name
, literal
)
1722 name
="netslice-template-show",
1723 short_help
="shows the content of a Network Slice Template (NST)",
1725 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1726 @click.argument("name")
1728 def nst_show2(ctx
, name
, literal
):
1729 """shows the content of a Network Slice Template (NST)
1731 NAME: name or ID of the NST
1734 nst_show(ctx
, name
, literal
)
1737 def nsi_show(ctx
, name
, literal
, filter):
1740 check_client_version(ctx
.obj
, ctx
.command
.name
)
1741 nsi
= ctx
.obj
.nsi
.get(name
)
1742 # except ClientException as e:
1747 print(yaml
.safe_dump(nsi
, indent
=4, default_flow_style
=False))
1750 table
= PrettyTable(["field", "value"])
1752 for k
, v
in list(nsi
.items()):
1753 if not filter or k
in filter:
1754 table
.add_row([k
, json
.dumps(v
, indent
=2)])
1761 name
="nsi-show", short_help
="shows the content of a Network Slice Instance (NSI)"
1763 @click.argument("name")
1764 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1768 help="restricts the information to the fields in the filter",
1771 def nsi_show1(ctx
, name
, literal
, filter):
1772 """shows the content of a Network Slice Instance (NSI)
1774 NAME: name or ID of the Network Slice Instance
1777 nsi_show(ctx
, name
, literal
, filter)
1781 name
="netslice-instance-show",
1782 short_help
="shows the content of a Network Slice Instance (NSI)",
1784 @click.argument("name")
1785 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1789 help="restricts the information to the fields in the filter",
1792 def nsi_show2(ctx
, name
, literal
, filter):
1793 """shows the content of a Network Slice Instance (NSI)
1795 NAME: name or ID of the Network Slice Instance
1798 nsi_show(ctx
, name
, literal
, filter)
1801 def nsi_op_show(ctx
, id, filter):
1804 check_client_version(ctx
.obj
, ctx
.command
.name
)
1805 op_info
= ctx
.obj
.nsi
.get_op(id)
1806 # except ClientException as e:
1810 table
= PrettyTable(["field", "value"])
1811 for k
, v
in list(op_info
.items()):
1812 if not filter or k
in filter:
1813 table
.add_row([k
, json
.dumps(v
, indent
=2)])
1820 short_help
="shows the info of an operation over a Network Slice Instance(NSI)",
1822 @click.argument("id")
1826 help="restricts the information to the fields in the filter",
1829 def nsi_op_show1(ctx
, id, filter):
1830 """shows the info of an operation over a Network Slice Instance(NSI)
1832 ID: operation identifier
1835 nsi_op_show(ctx
, id, filter)
1839 name
="netslice-instance-op-show",
1840 short_help
="shows the info of an operation over a Network Slice Instance(NSI)",
1842 @click.argument("id")
1846 help="restricts the information to the fields in the filter",
1849 def nsi_op_show2(ctx
, id, filter):
1850 """shows the info of an operation over a Network Slice Instance(NSI)
1852 ID: operation identifier
1855 nsi_op_show(ctx
, id, filter)
1859 name
="pdu-show", short_help
="shows the content of a Physical Deployment Unit (PDU)"
1861 @click.argument("name")
1862 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
1866 help="restricts the information to the fields in the filter",
1869 def pdu_show(ctx
, name
, literal
, filter):
1870 """shows the content of a Physical Deployment Unit (PDU)
1872 NAME: name or ID of the PDU
1876 check_client_version(ctx
.obj
, ctx
.command
.name
)
1877 pdu
= ctx
.obj
.pdu
.get(name
)
1878 # except ClientException as e:
1883 print(yaml
.safe_dump(pdu
, indent
=4, default_flow_style
=False))
1886 table
= PrettyTable(["field", "value"])
1888 for k
, v
in list(pdu
.items()):
1889 if not filter or k
in filter:
1890 table
.add_row([k
, json
.dumps(v
, indent
=2)])
1896 ####################
1898 ####################
1901 def nsd_create(ctx
, filename
, overwrite
, skip_charm_build
, repo
, vendor
, version
):
1904 check_client_version(ctx
.obj
, ctx
.command
.name
)
1906 filename
= ctx
.obj
.osmrepo
.get_pkg("ns", filename
, repo
, vendor
, version
)
1907 ctx
.obj
.nsd
.create(filename
, overwrite
=overwrite
, skip_charm_build
=skip_charm_build
)
1908 # except ClientException as e:
1913 @cli_osm.command(name
="nsd-create", short_help
="creates a new NSD/NSpkg")
1914 @click.argument("filename")
1918 default
=None, # hidden=True,
1919 help="Deprecated. Use override",
1925 help="overrides fields in descriptor, format: "
1926 '"key1.key2...=value[;key3...=value;...]"',
1929 "--skip-charm-build",
1932 help="The charm will not be compiled, it is assumed to already exist",
1934 @click.option("--repo", default
=None, help="[repository]: Repository name")
1935 @click.option("--vendor", default
=None, help="[repository]: filter by vendor]")
1939 help="[repository]: filter by version. Default: latest",
1942 def nsd_create1(ctx
, filename
, overwrite
, skip_charm_build
, repo
, vendor
, version
):
1943 """onboards a new NSpkg (alias of nspkg-create) (TO BE DEPRECATED)
1946 FILENAME: NF Package tar.gz file, NF Descriptor YAML file or NF Package folder
1947 If FILENAME is a file (NF Package tar.gz or NF Descriptor YAML), it is onboarded.
1948 If FILENAME is an NF Package folder, it is built and then onboarded.
1954 overwrite
=overwrite
,
1955 skip_charm_build
=skip_charm_build
,
1962 @cli_osm.command(name
="nspkg-create", short_help
="creates a new NSD/NSpkg")
1963 @click.argument("filename")
1967 default
=None, # hidden=True,
1968 help="Deprecated. Use override",
1974 help="overrides fields in descriptor, format: "
1975 '"key1.key2...=value[;key3...=value;...]"',
1978 "--skip-charm-build",
1981 help="The charm will not be compiled, it is assumed to already exist",
1983 @click.option("--repo", default
=None, help="[repository]: Repository name")
1984 @click.option("--vendor", default
=None, help="[repository]: filter by vendor]")
1988 help="[repository]: filter by version. Default: latest",
1991 def nsd_pkg_create(ctx
, filename
, overwrite
, skip_charm_build
, repo
, vendor
, version
):
1992 """onboards a new NSpkg
1994 FILENAME: NF Package tar.gz file, NF Descriptor YAML file or NF Package folder
1995 If FILENAME is a file (NF Package tar.gz or NF Descriptor YAML), it is onboarded.
1996 If FILENAME is an NF Package folder, it is built and then onboarded.
2002 overwrite
=overwrite
,
2003 skip_charm_build
=skip_charm_build
,
2024 check_client_version(ctx
.obj
, ctx
.command
.name
)
2026 filename
= ctx
.obj
.osmrepo
.get_pkg("vnf", filename
, repo
, vendor
, version
)
2027 ctx
.obj
.vnfd
.create(
2029 overwrite
=overwrite
,
2030 skip_charm_build
=skip_charm_build
,
2031 override_epa
=override_epa
,
2032 override_nonepa
=override_nonepa
,
2033 override_paravirt
=override_paravirt
,
2035 # except ClientException as e:
2040 @cli_osm.command(name
="vnfd-create", short_help
="creates a new VNFD/VNFpkg")
2041 @click.argument("filename")
2043 "--overwrite", "overwrite", default
=None, help="overwrite deprecated, use override"
2049 help="overrides fields in descriptor, format: "
2050 '"key1.key2...=value[;key3...=value;...]"',
2053 "--skip-charm-build",
2056 help="The charm will not be compiled, it is assumed to already exist",
2063 help="adds guest-epa parameters to all VDU",
2066 "--override-nonepa",
2070 help="removes all guest-epa parameters from all VDU",
2073 "--override-paravirt",
2077 help="overrides all VDU interfaces to PARAVIRT",
2079 @click.option("--repo", default
=None, help="[repository]: Repository name")
2080 @click.option("--vendor", default
=None, help="[repository]: filter by vendor]")
2084 help="[repository]: filter by version. Default: latest",
2099 """creates a new VNFD/VNFpkg
2101 FILENAME: NF Package tar.gz file, NF Descriptor YAML file or NF Package folder
2102 If FILENAME is a file (NF Package tar.gz or NF Descriptor YAML), it is onboarded.
2103 If FILENAME is an NF Package folder, it is built and then onboarded.
2109 overwrite
=overwrite
,
2110 skip_charm_build
=skip_charm_build
,
2111 override_epa
=override_epa
,
2112 override_nonepa
=override_nonepa
,
2113 override_paravirt
=override_paravirt
,
2120 @cli_osm.command(name
="vnfpkg-create", short_help
="creates a new VNFD/VNFpkg")
2121 @click.argument("filename")
2125 default
=None, # hidden=True,
2126 help="Deprecated. Use override",
2132 help="overrides fields in descriptor, format: "
2133 '"key1.key2...=value[;key3...=value;...]"',
2136 "--skip-charm-build",
2139 help="The charm will not be compiled, it is assumed to already exist",
2146 help="adds guest-epa parameters to all VDU",
2149 "--override-nonepa",
2153 help="removes all guest-epa parameters from all VDU",
2156 "--override-paravirt",
2160 help="overrides all VDU interfaces to PARAVIRT",
2162 @click.option("--repo", default
=None, help="[repository]: Repository name")
2163 @click.option("--vendor", default
=None, help="[repository]: filter by vendor]")
2167 help="[repository]: filter by version. Default: latest",
2182 """creates a new VNFD/VNFpkg
2184 FILENAME: NF Package tar.gz file, NF Descriptor YAML file or NF Package folder
2185 If FILENAME is a file (NF Package tar.gz or NF Descriptor YAML), it is onboarded.
2186 If FILENAME is an NF Package folder, it is built and then onboarded.
2192 overwrite
=overwrite
,
2193 skip_charm_build
=skip_charm_build
,
2194 override_epa
=override_epa
,
2195 override_nonepa
=override_nonepa
,
2196 override_paravirt
=override_paravirt
,
2203 @cli_osm.command(name
="nfpkg-create", short_help
="creates a new NFpkg")
2204 @click.argument("filename")
2208 default
=None, # hidden=True,
2209 help="Deprecated. Use override",
2215 help="overrides fields in descriptor, format: "
2216 '"key1.key2...=value[;key3...=value;...]"',
2219 "--skip-charm-build",
2222 help="The charm will not be compiled, it is assumed to already exist",
2229 help="adds guest-epa parameters to all VDU",
2232 "--override-nonepa",
2236 help="removes all guest-epa parameters from all VDU",
2239 "--override-paravirt",
2243 help="overrides all VDU interfaces to PARAVIRT",
2245 @click.option("--repo", default
=None, help="[repository]: Repository name")
2246 @click.option("--vendor", default
=None, help="[repository]: filter by vendor]")
2250 help="[repository]: filter by version. Default: latest",
2265 """creates a new NFpkg
2268 FILENAME: NF Package tar.gz file, NF Descriptor YAML file or NF Package folder
2269 If FILENAME is a file (NF Package tar.gz or NF Descriptor YAML), it is onboarded.
2270 If FILENAME is an NF Package folder, it is built and then onboarded.
2276 overwrite
=overwrite
,
2277 skip_charm_build
=skip_charm_build
,
2278 override_epa
=override_epa
,
2279 override_nonepa
=override_nonepa
,
2280 override_paravirt
=override_paravirt
,
2287 @cli_osm.command(name
="ns-create", short_help
="creates a new Network Service instance")
2288 @click.option("--ns_name", prompt
=True, help="name of the NS instance")
2289 @click.option("--nsd_name", prompt
=True, help="name of the NS descriptor")
2293 help="default VIM account id or name for the deployment",
2295 @click.option("--admin_status", default
="ENABLED", help="administration status")
2299 help="comma separated list of public key files to inject to vnfs",
2301 @click.option("--config", default
=None, help="ns specific yaml configuration")
2302 @click.option("--config_file", default
=None, help="ns specific yaml configuration file")
2308 help="do not return the control immediately, but keep it "
2309 "until the operation is completed, or timeout",
2311 @click.option("--timeout", default
=None, help="ns deployment timeout")
2325 """creates a new NS instance"""
2329 check_client_version(ctx
.obj
, "--config_file")
2331 raise ClientException(
2332 '"--config" option is incompatible with "--config_file" option'
2334 with
open(config_file
, "r") as cf
:
2341 account
=vim_account
,
2345 # except ClientException as e:
2350 def nst_create(ctx
, filename
, overwrite
):
2353 check_client_version(ctx
.obj
, ctx
.command
.name
)
2354 ctx
.obj
.nst
.create(filename
, overwrite
)
2355 # except ClientException as e:
2361 name
="nst-create", short_help
="creates a new Network Slice Template (NST)"
2363 @click.argument("filename")
2367 default
=None, # hidden=True,
2368 help="Deprecated. Use override",
2374 help="overrides fields in descriptor, format: "
2375 '"key1.key2...=value[;key3...=value;...]"',
2378 def nst_create1(ctx
, filename
, overwrite
):
2379 """creates a new Network Slice Template (NST)
2381 FILENAME: NST package folder, NST yaml file or NSTpkg tar.gz file
2384 nst_create(ctx
, filename
, overwrite
)
2388 name
="netslice-template-create",
2389 short_help
="creates a new Network Slice Template (NST)",
2391 @click.argument("filename")
2395 default
=None, # hidden=True,
2396 help="Deprecated. Use override",
2402 help="overrides fields in descriptor, format: "
2403 '"key1.key2...=value[;key3...=value;...]"',
2406 def nst_create2(ctx
, filename
, overwrite
):
2407 """creates a new Network Slice Template (NST)
2409 FILENAME: NST yaml file or NSTpkg tar.gz file
2412 nst_create(ctx
, filename
, overwrite
)
2416 ctx
, nst_name
, nsi_name
, vim_account
, ssh_keys
, config
, config_file
, wait
2418 """creates a new Network Slice Instance (NSI)"""
2421 check_client_version(ctx
.obj
, ctx
.command
.name
)
2424 raise ClientException(
2425 '"--config" option is incompatible with "--config_file" option'
2427 with
open(config_file
, "r") as cf
:
2434 account
=vim_account
,
2437 # except ClientException as e:
2442 @cli_osm.command(name
="nsi-create", short_help
="creates a new Network Slice Instance")
2443 @click.option("--nsi_name", prompt
=True, help="name of the Network Slice Instance")
2444 @click.option("--nst_name", prompt
=True, help="name of the Network Slice Template")
2448 help="default VIM account id or name for the deployment",
2451 "--ssh_keys", default
=None, help="comma separated list of keys to inject to vnfs"
2456 help="Netslice specific yaml configuration:\n"
2457 "netslice_subnet: [\n"
2458 "id: TEXT, vim_account: TEXT,\n"
2459 "vnf: [member-vnf-index: TEXT, vim_account: TEXT]\n"
2460 "vld: [name: TEXT, vim-network-name: TEXT or DICT with vim_account, vim_net entries]\n"
2461 "additionalParamsForNsi: {param: value, ...}\n"
2462 "additionalParamsForsubnet: [{id: SUBNET_ID, additionalParamsForNs: {}, additionalParamsForVnf: {}}]\n"
2464 "netslice-vld: [name: TEXT, vim-network-name: TEXT or DICT with vim_account, vim_net entries]",
2467 "--config_file", default
=None, help="nsi specific yaml configuration file"
2474 help="do not return the control immediately, but keep it "
2475 "until the operation is completed, or timeout",
2479 ctx
, nst_name
, nsi_name
, vim_account
, ssh_keys
, config
, config_file
, wait
2481 """creates a new Network Slice Instance (NSI)"""
2484 ctx
, nst_name
, nsi_name
, vim_account
, ssh_keys
, config
, config_file
, wait
=wait
2489 name
="netslice-instance-create", short_help
="creates a new Network Slice Instance"
2491 @click.option("--nsi_name", prompt
=True, help="name of the Network Slice Instance")
2492 @click.option("--nst_name", prompt
=True, help="name of the Network Slice Template")
2496 help="default VIM account id or name for the deployment",
2499 "--ssh_keys", default
=None, help="comma separated list of keys to inject to vnfs"
2504 help="Netslice specific yaml configuration:\n"
2505 "netslice_subnet: [\n"
2506 "id: TEXT, vim_account: TEXT,\n"
2507 "vnf: [member-vnf-index: TEXT, vim_account: TEXT]\n"
2508 "vld: [name: TEXT, vim-network-name: TEXT or DICT with vim_account, vim_net entries]"
2510 "netslice-vld: [name: TEXT, vim-network-name: TEXT or DICT with vim_account, vim_net entries]",
2513 "--config_file", default
=None, help="nsi specific yaml configuration file"
2520 help="do not return the control immediately, but keep it "
2521 "until the operation is completed, or timeout",
2525 ctx
, nst_name
, nsi_name
, vim_account
, ssh_keys
, config
, config_file
, wait
2527 """creates a new Network Slice Instance (NSI)"""
2530 ctx
, nst_name
, nsi_name
, vim_account
, ssh_keys
, config
, config_file
, wait
=wait
2535 name
="pdu-create", short_help
="adds a new Physical Deployment Unit to the catalog"
2537 @click.option("--name", help="name of the Physical Deployment Unit")
2538 @click.option("--pdu_type", help="type of PDU (e.g. router, firewall, FW001)")
2541 help="interface(s) of the PDU: name=<NAME>,mgmt=<true|false>,ip-address=<IP_ADDRESS>"
2542 + "[,type=<overlay|underlay>][,mac-address=<MAC_ADDRESS>][,vim-network-name=<VIM_NET_NAME>]",
2545 @click.option("--description", help="human readable description")
2548 help="list of VIM accounts (in the same VIM) that can reach this PDU\n"
2549 + "The format for multiple VIMs is --vim_account <vim_account_id_1> "
2550 + "--vim_account <vim_account_id_2> ... --vim_account <vim_account_id_N>",
2554 "--descriptor_file",
2556 help="PDU descriptor file (as an alternative to using the other arguments)",
2560 ctx
, name
, pdu_type
, interface
, description
, vim_account
, descriptor_file
2562 """creates a new Physical Deployment Unit (PDU)"""
2565 check_client_version(ctx
.obj
, ctx
.command
.name
)
2567 pdu
= create_pdu_dictionary(
2568 name
, pdu_type
, interface
, description
, vim_account
, descriptor_file
2570 ctx
.obj
.pdu
.create(pdu
)
2573 ########################
2574 # UPDATE PDU operation #
2575 ########################
2579 name
="pdu-update", short_help
="updates a Physical Deployment Unit to the catalog"
2581 @click.argument("name")
2582 @click.option("--newname", help="New name for the Physical Deployment Unit")
2583 @click.option("--pdu_type", help="type of PDU (e.g. router, firewall, FW001)")
2586 help="interface(s) of the PDU: name=<NAME>,mgmt=<true|false>,ip-address=<IP_ADDRESS>"
2587 + "[,type=<overlay|underlay>][,mac-address=<MAC_ADDRESS>][,vim-network-name=<VIM_NET_NAME>]",
2590 @click.option("--description", help="human readable description")
2593 help="list of VIM accounts (in the same VIM) that can reach this PDU\n"
2594 + "The format for multiple VIMs is --vim_account <vim_account_id_1> "
2595 + "--vim_account <vim_account_id_2> ... --vim_account <vim_account_id_N>",
2599 "--descriptor_file",
2601 help="PDU descriptor file (as an alternative to using the other arguments)",
2605 ctx
, name
, newname
, pdu_type
, interface
, description
, vim_account
, descriptor_file
2607 """Updates a new Physical Deployment Unit (PDU)"""
2610 check_client_version(ctx
.obj
, ctx
.command
.name
)
2617 pdu
= create_pdu_dictionary(
2618 newname
, pdu_type
, interface
, description
, vim_account
, descriptor_file
, update
2620 ctx
.obj
.pdu
.update(name
, pdu
)
2623 def create_pdu_dictionary(
2624 name
, pdu_type
, interface
, description
, vim_account
, descriptor_file
, update
=False
2630 if not descriptor_file
:
2633 raise ClientException(
2634 'in absence of descriptor file, option "--name" is mandatory'
2637 raise ClientException(
2638 'in absence of descriptor file, option "--pdu_type" is mandatory'
2641 raise ClientException(
2642 'in absence of descriptor file, option "--interface" is mandatory (at least once)'
2645 raise ClientException(
2646 'in absence of descriptor file, option "--vim_account" is mandatory (at least once)'
2649 with
open(descriptor_file
, "r") as df
:
2650 pdu
= yaml
.safe_load(df
.read())
2654 pdu
["type"] = pdu_type
2656 pdu
["description"] = description
2658 pdu
["vim_accounts"] = vim_account
2661 for iface
in interface
:
2662 new_iface
= {k
: v
for k
, v
in [i
.split("=") for i
in iface
.split(",")]}
2663 new_iface
["mgmt"] = new_iface
.get("mgmt", "false").lower() == "true"
2664 ifaces_list
.append(new_iface
)
2665 pdu
["interfaces"] = ifaces_list
2669 ####################
2671 ####################
2674 def nsd_update(ctx
, name
, content
):
2677 check_client_version(ctx
.obj
, ctx
.command
.name
)
2678 ctx
.obj
.nsd
.update(name
, content
)
2679 # except ClientException as e:
2684 @cli_osm.command(name
="nsd-update", short_help
="updates a NSD/NSpkg")
2685 @click.argument("name")
2689 help="filename with the NSD/NSpkg replacing the current one",
2692 def nsd_update1(ctx
, name
, content
):
2693 """updates a NSD/NSpkg
2695 NAME: name or ID of the NSD/NSpkg
2698 nsd_update(ctx
, name
, content
)
2701 @cli_osm.command(name
="nspkg-update", short_help
="updates a NSD/NSpkg")
2702 @click.argument("name")
2706 help="filename with the NSD/NSpkg replacing the current one",
2709 def nsd_update2(ctx
, name
, content
):
2710 """updates a NSD/NSpkg
2712 NAME: name or ID of the NSD/NSpkg
2715 nsd_update(ctx
, name
, content
)
2718 def vnfd_update(ctx
, name
, content
):
2721 check_client_version(ctx
.obj
, ctx
.command
.name
)
2722 ctx
.obj
.vnfd
.update(name
, content
)
2723 # except ClientException as e:
2728 @cli_osm.command(name
="vnfd-update", short_help
="updates a new VNFD/VNFpkg")
2729 @click.argument("name")
2733 help="filename with the VNFD/VNFpkg replacing the current one",
2736 def vnfd_update1(ctx
, name
, content
):
2737 """updates a VNFD/VNFpkg
2739 NAME: name or ID of the VNFD/VNFpkg
2742 vnfd_update(ctx
, name
, content
)
2745 @cli_osm.command(name
="vnfpkg-update", short_help
="updates a VNFD/VNFpkg")
2746 @click.argument("name")
2750 help="filename with the VNFD/VNFpkg replacing the current one",
2753 def vnfd_update2(ctx
, name
, content
):
2754 """updates a VNFD/VNFpkg
2756 NAME: VNFD yaml file or VNFpkg tar.gz file
2759 vnfd_update(ctx
, name
, content
)
2762 @cli_osm.command(name
="nfpkg-update", short_help
="updates a NFpkg")
2763 @click.argument("name")
2765 "--content", default
=None, help="filename with the NFpkg replacing the current one"
2768 def nfpkg_update(ctx
, name
, content
):
2771 NAME: NF Descriptor yaml file or NFpkg tar.gz file
2774 vnfd_update(ctx
, name
, content
)
2777 def nst_update(ctx
, name
, content
):
2780 check_client_version(ctx
.obj
, ctx
.command
.name
)
2781 ctx
.obj
.nst
.update(name
, content
)
2782 # except ClientException as e:
2787 @cli_osm.command(name
="nst-update", short_help
="updates a Network Slice Template (NST)")
2788 @click.argument("name")
2792 help="filename with the NST/NSTpkg replacing the current one",
2795 def nst_update1(ctx
, name
, content
):
2796 """updates a Network Slice Template (NST)
2798 NAME: name or ID of the NSD/NSpkg
2801 nst_update(ctx
, name
, content
)
2805 name
="netslice-template-update", short_help
="updates a Network Slice Template (NST)"
2807 @click.argument("name")
2811 help="filename with the NST/NSTpkg replacing the current one",
2814 def nst_update2(ctx
, name
, content
):
2815 """updates a Network Slice Template (NST)
2817 NAME: name or ID of the NSD/NSpkg
2820 nst_update(ctx
, name
, content
)
2823 ####################
2825 ####################
2828 def nsd_delete(ctx
, name
, force
):
2832 ctx
.obj
.nsd
.delete(name
)
2834 check_client_version(ctx
.obj
, "--force")
2835 ctx
.obj
.nsd
.delete(name
, force
)
2836 # except ClientException as e:
2841 @cli_osm.command(name
="nsd-delete", short_help
="deletes a NSD/NSpkg")
2842 @click.argument("name")
2844 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2847 def nsd_delete1(ctx
, name
, force
):
2848 """deletes a NSD/NSpkg
2850 NAME: name or ID of the NSD/NSpkg to be deleted
2853 nsd_delete(ctx
, name
, force
)
2856 @cli_osm.command(name
="nspkg-delete", short_help
="deletes a NSD/NSpkg")
2857 @click.argument("name")
2859 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2862 def nsd_delete2(ctx
, name
, force
):
2863 """deletes a NSD/NSpkg
2865 NAME: name or ID of the NSD/NSpkg to be deleted
2868 nsd_delete(ctx
, name
, force
)
2871 def vnfd_delete(ctx
, name
, force
):
2875 ctx
.obj
.vnfd
.delete(name
)
2877 check_client_version(ctx
.obj
, "--force")
2878 ctx
.obj
.vnfd
.delete(name
, force
)
2879 # except ClientException as e:
2884 @cli_osm.command(name
="vnfd-delete", short_help
="deletes a VNFD/VNFpkg")
2885 @click.argument("name")
2887 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2890 def vnfd_delete1(ctx
, name
, force
):
2891 """deletes a VNFD/VNFpkg
2893 NAME: name or ID of the VNFD/VNFpkg to be deleted
2896 vnfd_delete(ctx
, name
, force
)
2899 @cli_osm.command(name
="vnfpkg-delete", short_help
="deletes a VNFD/VNFpkg")
2900 @click.argument("name")
2902 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2905 def vnfd_delete2(ctx
, name
, force
):
2906 """deletes a VNFD/VNFpkg
2908 NAME: name or ID of the VNFD/VNFpkg to be deleted
2911 vnfd_delete(ctx
, name
, force
)
2914 @cli_osm.command(name
="nfpkg-delete", short_help
="deletes a NFpkg")
2915 @click.argument("name")
2917 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2920 def nfpkg_delete(ctx
, name
, force
):
2923 NAME: name or ID of the NFpkg to be deleted
2926 vnfd_delete(ctx
, name
, force
)
2929 @cli_osm.command(name
="ns-delete", short_help
="deletes a NS instance")
2930 @click.argument("name")
2932 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2937 help="specific yaml configuration for the termination, e.g. '{autoremove: False, timeout_ns_terminate: "
2938 "600, skip_terminate_primitives: True}'",
2945 help="do not return the control immediately, but keep it "
2946 "until the operation is completed, or timeout",
2949 def ns_delete(ctx
, name
, force
, config
, wait
):
2950 """deletes a NS instance
2952 NAME: name or ID of the NS instance to be deleted
2957 ctx
.obj
.ns
.delete(name
, config
=config
, wait
=wait
)
2959 check_client_version(ctx
.obj
, "--force")
2960 ctx
.obj
.ns
.delete(name
, force
, config
=config
, wait
=wait
)
2961 # except ClientException as e:
2966 def nst_delete(ctx
, name
, force
):
2969 check_client_version(ctx
.obj
, ctx
.command
.name
)
2970 ctx
.obj
.nst
.delete(name
, force
)
2971 # except ClientException as e:
2976 @cli_osm.command(name
="nst-delete", short_help
="deletes a Network Slice Template (NST)")
2977 @click.argument("name")
2979 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2982 def nst_delete1(ctx
, name
, force
):
2983 """deletes a Network Slice Template (NST)
2985 NAME: name or ID of the NST/NSTpkg to be deleted
2988 nst_delete(ctx
, name
, force
)
2992 name
="netslice-template-delete", short_help
="deletes a Network Slice Template (NST)"
2994 @click.argument("name")
2996 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
2999 def nst_delete2(ctx
, name
, force
):
3000 """deletes a Network Slice Template (NST)
3002 NAME: name or ID of the NST/NSTpkg to be deleted
3005 nst_delete(ctx
, name
, force
)
3008 def nsi_delete(ctx
, name
, force
, wait
):
3011 check_client_version(ctx
.obj
, ctx
.command
.name
)
3012 ctx
.obj
.nsi
.delete(name
, force
, wait
=wait
)
3013 # except ClientException as e:
3018 @cli_osm.command(name
="nsi-delete", short_help
="deletes a Network Slice Instance (NSI)")
3019 @click.argument("name")
3021 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
3028 help="do not return the control immediately, but keep it "
3029 "until the operation is completed, or timeout",
3032 def nsi_delete1(ctx
, name
, force
, wait
):
3033 """deletes a Network Slice Instance (NSI)
3035 NAME: name or ID of the Network Slice instance to be deleted
3038 nsi_delete(ctx
, name
, force
, wait
=wait
)
3042 name
="netslice-instance-delete", short_help
="deletes a Network Slice Instance (NSI)"
3044 @click.argument("name")
3046 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
3049 def nsi_delete2(ctx
, name
, force
, wait
):
3050 """deletes a Network Slice Instance (NSI)
3052 NAME: name or ID of the Network Slice instance to be deleted
3055 nsi_delete(ctx
, name
, force
, wait
=wait
)
3059 name
="pdu-delete", short_help
="deletes a Physical Deployment Unit (PDU)"
3061 @click.argument("name")
3063 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
3066 def pdu_delete(ctx
, name
, force
):
3067 """deletes a Physical Deployment Unit (PDU)
3069 NAME: name or ID of the PDU to be deleted
3073 check_client_version(ctx
.obj
, ctx
.command
.name
)
3074 ctx
.obj
.pdu
.delete(name
, force
)
3075 # except ClientException as e:
3085 @cli_osm.command(name
="vim-create", short_help
="creates a new VIM account")
3086 @click.option("--name", required
=True, help="Name to create datacenter")
3087 @click.option("--user", default
=None, help="VIM username")
3088 @click.option("--password", default
=None, help="VIM password")
3089 @click.option("--auth_url", default
=None, help="VIM url")
3091 "--tenant", "--project", "tenant", default
=None, help="VIM tenant/project name"
3093 @click.option("--config", default
=None, help="VIM specific config parameters")
3097 help="VIM specific config parameters in YAML or JSON file",
3099 @click.option("--account_type", default
="openstack", help="VIM type")
3100 @click.option("--description", default
=None, help="human readable description")
3104 help="Name or id of the SDN controller associated to this VIM account",
3107 "--sdn_port_mapping",
3109 help="File describing the port mapping between compute nodes' ports and switch ports",
3116 help="do not return the control immediately, but keep it "
3117 "until the operation is completed, or timeout",
3119 @click.option("--vca", default
=None, help="VCA to be used in this VIM account")
3121 "--creds", default
=None, help="credentials file (only applycable for GCP VIM type)"
3124 "--prometheus_config_file",
3126 help="Prometheus configuration to get VIM data",
3145 prometheus_config_file
,
3147 """creates a new VIM account"""
3151 check_client_version(ctx
.obj
, "--sdn_controller")
3152 if sdn_port_mapping
:
3153 check_client_version(ctx
.obj
, "--sdn_port_mapping")
3155 if prometheus_config_file
:
3156 with
open(prometheus_config_file
) as prometheus_file
:
3157 prometheus_config_dict
= json
.load(prometheus_file
)
3158 vim
["prometheus-config"] = prometheus_config_dict
3160 vim
["vim-username"] = user
3161 vim
["vim-password"] = password
3162 vim
["vim-url"] = auth_url
3163 vim
["vim-tenant-name"] = tenant
3164 vim
["vim-type"] = account_type
3165 vim
["description"] = description
3168 vim_config
= create_config(config_file
, config
)
3170 with
open(creds
, "r") as cf
:
3171 vim_config
["credentials"] = yaml
.safe_load(cf
.read())
3173 name
, vim
, vim_config
, sdn_controller
, sdn_port_mapping
, wait
=wait
3175 # except ClientException as e:
3180 @cli_osm.command(name
="vim-update", short_help
="updates a VIM account")
3181 @click.argument("name")
3182 @click.option("--newname", help="New name for the VIM account")
3183 @click.option("--user", help="VIM username")
3184 @click.option("--password", help="VIM password")
3185 @click.option("--auth_url", help="VIM url")
3186 @click.option("--tenant", help="VIM tenant name")
3187 @click.option("--config", help="VIM specific config parameters")
3191 help="VIM specific config parameters in YAML or JSON file",
3193 @click.option("--account_type", help="VIM type")
3194 @click.option("--description", help="human readable description")
3198 help="Name or id of the SDN controller to be associated with this VIM"
3199 "account. Use empty string to disassociate",
3202 "--sdn_port_mapping",
3204 help="File describing the port mapping between compute nodes' ports and switch ports",
3211 help="do not return the control immediately, but keep it "
3212 "until the operation is completed, or timeout",
3215 "--creds", default
=None, help="credentials file (only applycable for GCP VIM type)"
3218 "--prometheus_config_file",
3220 help="Prometheus configuration to get VIM data",
3239 prometheus_config_file
,
3241 """updates a VIM account
3243 NAME: name or ID of the VIM account
3247 check_client_version(ctx
.obj
, ctx
.command
.name
)
3250 vim
["name"] = newname
3252 vim
["vim_user"] = user
3254 vim
["vim_password"] = password
3256 vim
["vim_url"] = auth_url
3258 vim
["vim-tenant-name"] = tenant
3260 vim
["vim_type"] = account_type
3262 vim
["description"] = description
3264 if config
or config_file
:
3265 vim_config
= create_config(config_file
, config
)
3267 with
open(creds
, "r") as cf
:
3268 vim_config
["credentials"] = yaml
.safe_load(cf
.read())
3269 if prometheus_config_file
:
3270 with
open(prometheus_config_file
) as prometheus_file
:
3271 prometheus_config_dict
= json
.load(prometheus_file
)
3272 vim
["prometheus-config"] = prometheus_config_dict
3273 logger
.info(f
"VIM: {vim}, VIM config: {vim_config}")
3275 name
, vim
, vim_config
, sdn_controller
, sdn_port_mapping
, wait
=wait
3277 # except ClientException as e:
3282 @cli_osm.command(name
="vim-delete", short_help
="deletes a VIM account")
3283 @click.argument("name")
3285 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
3292 help="do not return the control immediately, but keep it "
3293 "until the operation is completed, or timeout",
3296 def vim_delete(ctx
, name
, force
, wait
):
3297 """deletes a VIM account
3299 NAME: name or ID of the VIM account to be deleted
3304 ctx
.obj
.vim
.delete(name
, wait
=wait
)
3306 check_client_version(ctx
.obj
, "--force")
3307 ctx
.obj
.vim
.delete(name
, force
, wait
=wait
)
3308 # except ClientException as e:
3313 @cli_osm.command(name
="vim-list", short_help
="list all VIM accounts")
3314 # @click.option('--ro_update/--no_ro_update',
3316 # help='update list from RO')
3321 help="restricts the list to the VIM accounts matching the filter",
3326 help="get more details of the NS (project, vim, deployment status, configuration status.",
3329 def vim_list(ctx
, filter, long):
3330 """list all VIM accounts"""
3333 filter = "&".join(filter)
3334 check_client_version(ctx
.obj
, "--filter")
3336 # check_client_version(ctx.obj, '--ro_update', 'v1')
3337 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
3338 if fullclassname
== "osmclient.sol005.client.Client":
3339 resp
= ctx
.obj
.vim
.list(filter)
3341 # resp = ctx.obj.vim.list(ro_update)
3343 table
= PrettyTable(
3344 ["vim name", "uuid", "project", "operational state", "error details"]
3346 project_list
= ctx
.obj
.project
.list()
3348 table
= PrettyTable(["vim name", "uuid", "operational state"])
3351 if "vim_password" in vim
:
3352 vim
["vim_password"] = "********"
3353 if "config" in vim
and "credentials" in vim
["config"]:
3354 vim
["config"]["credentials"] = "********"
3355 logger
.debug("VIM details: {}".format(yaml
.safe_dump(vim
)))
3356 vim_state
= vim
["_admin"].get("operationalState", "-")
3357 error_details
= "N/A"
3358 if vim_state
== "ERROR":
3359 error_details
= vim
["_admin"].get("detailed-status", "Not found")
3360 project_id
, project_name
= get_project(project_list
, vim
)
3361 # project_info = '{} ({})'.format(project_name, project_id)
3362 project_info
= project_name
3369 wrap_text(text
=error_details
, width
=80),
3374 [vim
["name"], vim
["uuid"], vim
["_admin"].get("operationalState", "-")]
3380 @cli_osm.command(name
="vim-show", short_help
="shows the details of a VIM account")
3381 @click.argument("name")
3385 help="restricts the information to the fields in the filter",
3387 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
3389 def vim_show(ctx
, name
, filter, literal
):
3390 """shows the details of a VIM account
3392 NAME: name or ID of the VIM account
3396 resp
= ctx
.obj
.vim
.get(name
)
3397 if "vim_password" in resp
:
3398 resp
["vim_password"] = "********"
3399 if "config" in resp
and "credentials" in resp
["config"]:
3400 resp
["config"]["credentials"] = "********"
3401 # except ClientException as e:
3406 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
3408 table
= PrettyTable(["key", "attribute"])
3409 for k
, v
in list(resp
.items()):
3410 if not filter or k
in filter:
3411 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
3416 ####################
3418 ####################
3421 @cli_osm.command(name
="wim-create", short_help
="creates a new WIM account")
3422 @click.option("--name", prompt
=True, help="Name for the WIM account")
3423 @click.option("--user", help="WIM username")
3424 @click.option("--password", help="WIM password")
3425 @click.option("--url", prompt
=True, help="WIM url")
3426 # @click.option('--tenant',
3427 # help='wIM tenant name')
3428 @click.option("--config", default
=None, help="WIM specific config parameters")
3429 @click.option("--wim_type", help="WIM type")
3430 @click.option("--description", default
=None, help="human readable description")
3432 "--wim_port_mapping",
3434 help="File describing the port mapping between DC edge (datacenters, switches, ports) and WAN edge "
3435 "(WAN service endpoint id and info)",
3442 help="do not return the control immediately, but keep it "
3443 "until the operation is completed, or timeout",
3459 """creates a new WIM account"""
3462 check_client_version(ctx
.obj
, ctx
.command
.name
)
3463 # if sdn_controller:
3464 # check_client_version(ctx.obj, '--sdn_controller')
3465 # if sdn_port_mapping:
3466 # check_client_version(ctx.obj, '--sdn_port_mapping')
3471 wim
["password"] = password
3473 wim
["wim_url"] = url
3474 # if tenant: wim['tenant'] = tenant
3475 wim
["wim_type"] = wim_type
3477 wim
["description"] = description
3479 wim
["config"] = config
3480 ctx
.obj
.wim
.create(name
, wim
, wim_port_mapping
, wait
=wait
)
3481 # except ClientException as e:
3486 @cli_osm.command(name
="wim-update", short_help
="updates a WIM account")
3487 @click.argument("name")
3488 @click.option("--newname", help="New name for the WIM account")
3489 @click.option("--user", help="WIM username")
3490 @click.option("--password", help="WIM password")
3491 @click.option("--url", help="WIM url")
3492 @click.option("--config", help="WIM specific config parameters")
3493 @click.option("--wim_type", help="WIM type")
3494 @click.option("--description", help="human readable description")
3496 "--wim_port_mapping",
3498 help="File describing the port mapping between DC edge (datacenters, switches, ports) and WAN edge "
3499 "(WAN service endpoint id and info)",
3506 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
3522 """updates a WIM account
3524 NAME: name or ID of the WIM account
3528 check_client_version(ctx
.obj
, ctx
.command
.name
)
3531 wim
["name"] = newname
3535 wim
["password"] = password
3538 # if tenant: wim['tenant'] = tenant
3540 wim
["wim_type"] = wim_type
3542 wim
["description"] = description
3544 wim
["config"] = config
3545 ctx
.obj
.wim
.update(name
, wim
, wim_port_mapping
, wait
=wait
)
3546 # except ClientException as e:
3551 @cli_osm.command(name
="wim-delete", short_help
="deletes a WIM account")
3552 @click.argument("name")
3554 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
3561 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
3564 def wim_delete(ctx
, name
, force
, wait
):
3565 """deletes a WIM account
3567 NAME: name or ID of the WIM account to be deleted
3571 check_client_version(ctx
.obj
, ctx
.command
.name
)
3572 ctx
.obj
.wim
.delete(name
, force
, wait
=wait
)
3573 # except ClientException as e:
3578 @cli_osm.command(name
="wim-list", short_help
="list all WIM accounts")
3583 help="restricts the list to the WIM accounts matching the filter",
3586 def wim_list(ctx
, filter):
3587 """list all WIM accounts"""
3590 check_client_version(ctx
.obj
, ctx
.command
.name
)
3592 filter = "&".join(filter)
3593 resp
= ctx
.obj
.wim
.list(filter)
3594 table
= PrettyTable(["wim name", "uuid"])
3596 table
.add_row([wim
["name"], wim
["uuid"]])
3599 # except ClientException as e:
3604 @cli_osm.command(name
="wim-show", short_help
="shows the details of a WIM account")
3605 @click.argument("name")
3607 def wim_show(ctx
, name
):
3608 """shows the details of a WIM account
3610 NAME: name or ID of the WIM account
3614 check_client_version(ctx
.obj
, ctx
.command
.name
)
3615 resp
= ctx
.obj
.wim
.get(name
)
3616 if "password" in resp
:
3617 resp
["password"] = "********"
3618 # except ClientException as e:
3622 table
= PrettyTable(["key", "attribute"])
3623 for k
, v
in list(resp
.items()):
3624 table
.add_row([k
, json
.dumps(v
, indent
=2)])
3629 ####################
3630 # SDN controller operations
3631 ####################
3634 @cli_osm.command(name
="sdnc-create", short_help
="creates a new SDN controller")
3635 @click.option("--name", prompt
=True, help="Name to create sdn controller")
3636 @click.option("--type", prompt
=True, help="SDN controller type")
3638 "--sdn_controller_version", # hidden=True,
3639 help="Deprecated. Use --config {version: sdn_controller_version}",
3641 @click.option("--url", help="URL in format http[s]://HOST:IP/")
3642 @click.option("--ip_address", help="Deprecated. Use --url") # hidden=True,
3643 @click.option("--port", help="Deprecated. Use --url") # hidden=True,
3645 "--switch_dpid", help="Deprecated. Use --config {switch_id: DPID}" # hidden=True,
3649 help="Extra information for SDN in yaml format, as {switch_id: identity used for the plugin (e.g. DPID: "
3650 "Openflow Datapath ID), version: version}",
3652 @click.option("--user", help="SDN controller username")
3656 confirmation_prompt
=True,
3657 help="SDN controller password",
3659 @click.option("--description", default
=None, help="human readable description")
3665 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
3668 def sdnc_create(ctx
, **kwargs
):
3669 """creates a new SDN controller"""
3674 if kwargs
[x
] and x
not in ("wait", "ip_address", "port", "switch_dpid")
3676 if kwargs
.get("port"):
3677 print("option '--port' is deprecated, use '--url' instead")
3678 sdncontroller
["port"] = int(kwargs
["port"])
3679 if kwargs
.get("ip_address"):
3680 print("option '--ip_address' is deprecated, use '--url' instead")
3681 sdncontroller
["ip"] = kwargs
["ip_address"]
3682 if kwargs
.get("switch_dpid"):
3684 "option '--switch_dpid' is deprecated, use '--config={switch_id: id|DPID}' instead"
3686 sdncontroller
["dpid"] = kwargs
["switch_dpid"]
3687 if kwargs
.get("sdn_controller_version"):
3689 "option '--sdn_controller_version' is deprecated, use '--config={version: SDN_CONTROLLER_VERSION}'"
3693 check_client_version(ctx
.obj
, ctx
.command
.name
)
3694 ctx
.obj
.sdnc
.create(kwargs
["name"], sdncontroller
, wait
=kwargs
["wait"])
3695 # except ClientException as e:
3700 @cli_osm.command(name
="sdnc-update", short_help
="updates an SDN controller")
3701 @click.argument("name")
3702 @click.option("--newname", help="New name for the SDN controller")
3703 @click.option("--description", default
=None, help="human readable description")
3704 @click.option("--type", help="SDN controller type")
3705 @click.option("--url", help="URL in format http[s]://HOST:IP/")
3708 help="Extra information for SDN in yaml format, as "
3709 "{switch_id: identity used for the plugin (e.g. DPID: "
3710 "Openflow Datapath ID), version: version}",
3712 @click.option("--user", help="SDN controller username")
3713 @click.option("--password", help="SDN controller password")
3714 @click.option("--ip_address", help="Deprecated. Use --url") # hidden=True
3715 @click.option("--port", help="Deprecated. Use --url") # hidden=True
3717 "--switch_dpid", help="Deprecated. Use --config {switch_dpid: DPID}"
3720 "--sdn_controller_version", help="Deprecated. Use --config {version: VERSION}"
3727 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
3730 def sdnc_update(ctx
, **kwargs
):
3731 """updates an SDN controller
3733 NAME: name or ID of the SDN controller
3740 and x
not in ("wait", "ip_address", "port", "switch_dpid", "new_name")
3742 if kwargs
.get("newname"):
3743 sdncontroller
["name"] = kwargs
["newname"]
3744 if kwargs
.get("port"):
3745 print("option '--port' is deprecated, use '--url' instead")
3746 sdncontroller
["port"] = int(kwargs
["port"])
3747 if kwargs
.get("ip_address"):
3748 print("option '--ip_address' is deprecated, use '--url' instead")
3749 sdncontroller
["ip"] = kwargs
["ip_address"]
3750 if kwargs
.get("switch_dpid"):
3752 "option '--switch_dpid' is deprecated, use '--config={switch_id: id|DPID}' instead"
3754 sdncontroller
["dpid"] = kwargs
["switch_dpid"]
3755 if kwargs
.get("sdn_controller_version"):
3757 "option '--sdn_controller_version' is deprecated, use '---config={version: SDN_CONTROLLER_VERSION}'"
3762 check_client_version(ctx
.obj
, ctx
.command
.name
)
3763 ctx
.obj
.sdnc
.update(kwargs
["name"], sdncontroller
, wait
=kwargs
["wait"])
3764 # except ClientException as e:
3769 @cli_osm.command(name
="sdnc-delete", short_help
="deletes an SDN controller")
3770 @click.argument("name")
3772 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
3779 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
3782 def sdnc_delete(ctx
, name
, force
, wait
):
3783 """deletes an SDN controller
3785 NAME: name or ID of the SDN controller to be deleted
3789 check_client_version(ctx
.obj
, ctx
.command
.name
)
3790 ctx
.obj
.sdnc
.delete(name
, force
, wait
=wait
)
3791 # except ClientException as e:
3796 @cli_osm.command(name
="sdnc-list", short_help
="list all SDN controllers")
3801 help="restricts the list to the SDN controllers matching the filter with format: 'k[.k..]=v[&k[.k]=v2]'",
3804 def sdnc_list(ctx
, filter):
3805 """list all SDN controllers"""
3808 check_client_version(ctx
.obj
, ctx
.command
.name
)
3810 filter = "&".join(filter)
3811 resp
= ctx
.obj
.sdnc
.list(filter)
3812 # except ClientException as e:
3815 table
= PrettyTable(["sdnc name", "id"])
3817 table
.add_row([sdnc
["name"], sdnc
["_id"]])
3822 @cli_osm.command(name
="sdnc-show", short_help
="shows the details of an SDN controller")
3823 @click.argument("name")
3825 def sdnc_show(ctx
, name
):
3826 """shows the details of an SDN controller
3828 NAME: name or ID of the SDN controller
3832 check_client_version(ctx
.obj
, ctx
.command
.name
)
3833 resp
= ctx
.obj
.sdnc
.get(name
)
3834 # except ClientException as e:
3838 table
= PrettyTable(["key", "attribute"])
3839 for k
, v
in list(resp
.items()):
3840 table
.add_row([k
, json
.dumps(v
, indent
=2)])
3845 ###########################
3846 # K8s cluster operations
3847 ###########################
3850 @cli_osm.command(name
="k8scluster-add", short_help
="adds a K8s cluster to OSM")
3851 @click.argument("name")
3853 "--creds", prompt
=True, help="credentials file, i.e. a valid `.kube/config` file"
3855 @click.option("--version", prompt
=True, help="Kubernetes version")
3857 "--vim", prompt
=True, help="VIM target, the VIM where the cluster resides"
3862 help='''list of VIM networks, in JSON inline format, where the cluster is
3863 accessible via L3 routing, e.g. "{(k8s_net1:vim_network1) [,(k8s_net2:vim_network2) ...]}"''',
3866 "--init-helm2/--skip-helm2",
3869 help="Initialize helm v2",
3872 "--init-helm3/--skip-helm3",
3875 help="Initialize helm v3",
3878 "--init-jujubundle/--skip-jujubundle",
3881 help="Initialize juju-bundle",
3883 @click.option("--description", default
=None, help="human readable description")
3886 default
="kube-system",
3887 help="namespace to be used for its operation, defaults to `kube-system`",
3894 help="do not return the control immediately, but keep it "
3895 "until the operation is completed, or timeout",
3900 help="list of CNI plugins, in JSON inline format, used in the cluster",
3902 # @click.option('--skip-init',
3904 # help='If set, K8s cluster is assumed to be ready for its use with OSM')
3905 # @click.option('--wait',
3907 # help='do not return the control immediately, but keep it until the operation is completed, or timeout')
3924 """adds a K8s cluster to OSM
3926 NAME: name of the K8s cluster
3929 check_client_version(ctx
.obj
, ctx
.command
.name
)
3931 cluster
["name"] = name
3932 with
open(creds
, "r") as cf
:
3933 cluster
["credentials"] = yaml
.safe_load(cf
.read())
3934 cluster
["k8s_version"] = version
3935 cluster
["vim_account"] = vim
3936 cluster
["nets"] = yaml
.safe_load(k8s_nets
)
3937 if not (init_helm2
and init_jujubundle
and init_helm3
):
3938 cluster
["deployment_methods"] = {
3939 "helm-chart": init_helm2
,
3940 "juju-bundle": init_jujubundle
,
3941 "helm-chart-v3": init_helm3
,
3944 cluster
["description"] = description
3946 cluster
["namespace"] = namespace
3948 cluster
["cni"] = yaml
.safe_load(cni
)
3949 ctx
.obj
.k8scluster
.create(name
, cluster
, wait
)
3950 # except ClientException as e:
3955 @cli_osm.command(name
="k8scluster-update", short_help
="updates a K8s cluster")
3956 @click.argument("name")
3957 @click.option("--newname", help="New name for the K8s cluster")
3958 @click.option("--creds", help="credentials file, i.e. a valid `.kube/config` file")
3959 @click.option("--version", help="Kubernetes version")
3960 @click.option("--vim", help="VIM target, the VIM where the cluster resides")
3963 help='''list of VIM networks, in JSON inline format, where the cluster is accessible
3964 via L3 routing, e.g. "{(k8s_net1:vim_network1) [,(k8s_net2:vim_network2) ...]}"''',
3966 @click.option("--description", help="human readable description")
3969 help="namespace to be used for its operation, defaults to `kube-system`",
3976 help="do not return the control immediately, but keep it "
3977 "until the operation is completed, or timeout",
3980 "--cni", help="list of CNI plugins, in JSON inline format, used in the cluster"
3983 def k8scluster_update(
3984 ctx
, name
, newname
, creds
, version
, vim
, k8s_nets
, description
, namespace
, wait
, cni
3986 """updates a K8s cluster
3988 NAME: name or ID of the K8s cluster
3991 check_client_version(ctx
.obj
, ctx
.command
.name
)
3994 cluster
["name"] = newname
3996 with
open(creds
, "r") as cf
:
3997 cluster
["credentials"] = yaml
.safe_load(cf
.read())
3999 cluster
["k8s_version"] = version
4001 cluster
["vim_account"] = vim
4003 cluster
["nets"] = yaml
.safe_load(k8s_nets
)
4005 cluster
["description"] = description
4007 cluster
["namespace"] = namespace
4009 cluster
["cni"] = yaml
.safe_load(cni
)
4010 ctx
.obj
.k8scluster
.update(name
, cluster
, wait
)
4011 # except ClientException as e:
4016 @cli_osm.command(name
="k8scluster-delete", short_help
="deletes a K8s cluster")
4017 @click.argument("name")
4019 "--force", is_flag
=True, help="forces the deletion from the DB (not recommended)"
4026 help="do not return the control immediately, but keep it "
4027 "until the operation is completed, or timeout",
4030 def k8scluster_delete(ctx
, name
, force
, wait
):
4031 """deletes a K8s cluster
4033 NAME: name or ID of the K8s cluster to be deleted
4036 check_client_version(ctx
.obj
, ctx
.command
.name
)
4037 ctx
.obj
.k8scluster
.delete(name
, force
, wait
)
4038 # except ClientException as e:
4043 @cli_osm.command(name
="k8scluster-list")
4048 help="restricts the list to the K8s clusters matching the filter",
4050 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
4051 @click.option("--long", is_flag
=True, help="get more details")
4053 def k8scluster_list(ctx
, filter, literal
, long):
4054 """list all K8s clusters"""
4056 check_client_version(ctx
.obj
, ctx
.command
.name
)
4058 filter = "&".join(filter)
4059 resp
= ctx
.obj
.k8scluster
.list(filter)
4061 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
4064 table
= PrettyTable(
4072 "Deployment methods",
4073 "Operational State",
4074 "Op. state (details)",
4079 project_list
= ctx
.obj
.project
.list()
4081 table
= PrettyTable(
4082 ["Name", "Id", "VIM", "Operational State", "Op. state details"]
4085 vim_list
= ctx
.obj
.vim
.list()
4088 for cluster
in resp
:
4089 logger
.debug("Cluster details: {}".format(yaml
.safe_dump(cluster
)))
4090 vim_name
= get_vim_name(vim_list
, cluster
["vim_account"])
4091 # vim_info = '{} ({})'.format(vim_name,cluster['vim_account'])
4093 op_state_details
= "Helm: {}\nJuju: {}".format(
4094 cluster
["_admin"].get("helm-chart", {}).get("operationalState", "-"),
4095 cluster
["_admin"].get("juju-bundle", {}).get("operationalState", "-"),
4098 project_id
, project_name
= get_project(project_list
, cluster
)
4099 # project_info = '{} ({})'.format(project_name, project_id)
4100 project_info
= project_name
4101 detailed_status
= cluster
["_admin"].get("detailed-status", "-")
4107 cluster
["k8s_version"],
4109 json
.dumps(cluster
["nets"]),
4110 json
.dumps(cluster
["deployment_methods"]),
4111 cluster
["_admin"]["operationalState"],
4113 trunc_text(cluster
.get("description") or "", 40),
4114 wrap_text(text
=detailed_status
, width
=40),
4123 cluster
["_admin"]["operationalState"],
4129 # except ClientException as e:
4135 name
="k8scluster-show", short_help
="shows the details of a K8s cluster"
4137 @click.argument("name")
4138 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
4140 def k8scluster_show(ctx
, name
, literal
):
4141 """shows the details of a K8s cluster
4143 NAME: name or ID of the K8s cluster
4146 resp
= ctx
.obj
.k8scluster
.get(name
)
4148 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
4150 table
= PrettyTable(["key", "attribute"])
4151 for k
, v
in list(resp
.items()):
4152 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
4155 # except ClientException as e:
4160 ###########################
4162 ###########################
4165 @cli_osm.command(name
="vca-add", short_help
="adds a VCA (Juju controller) to OSM")
4166 @click.argument("name")
4170 help="Comma-separated list of IP or hostnames of the Juju controller",
4172 @click.option("--user", prompt
=True, help="Username with admin priviledges")
4173 @click.option("--secret", prompt
=True, help="Password of the specified username")
4174 @click.option("--cacert", prompt
=True, help="CA certificate")
4178 help="Name of the cloud that will be used for LXD containers (LXD proxy charms)",
4181 "--lxd-credentials",
4183 help="Name of the cloud credentialsto be used for the LXD cloud",
4188 help="Name of the cloud that will be used for K8s containers (K8s proxy charms)",
4191 "--k8s-credentials",
4193 help="Name of the cloud credentialsto be used for the K8s cloud",
4198 help="Configuration options for the models",
4200 @click.option("--description", default
=None, help="human readable description")
4216 """adds a VCA to OSM
4218 NAME: name of the VCA
4220 check_client_version(ctx
.obj
, ctx
.command
.name
)
4223 vca
["endpoints"] = endpoints
.split(",")
4225 vca
["secret"] = secret
4226 vca
["cacert"] = cacert
4227 vca
["lxd-cloud"] = lxd_cloud
4228 vca
["lxd-credentials"] = lxd_credentials
4229 vca
["k8s-cloud"] = k8s_cloud
4230 vca
["k8s-credentials"] = k8s_credentials
4232 vca
["description"] = description
4234 model_config
= load(model_config
)
4235 vca
["model-config"] = model_config
4236 ctx
.obj
.vca
.create(name
, vca
)
4239 def load(data
: Any
):
4240 if os
.path
.isfile(data
):
4241 return load_file(data
)
4244 return json
.loads(data
)
4245 except ValueError as e
:
4246 raise ClientException(e
)
4249 def load_file(file_path
: str) -> Dict
:
4251 with
open(file_path
, "r") as f
:
4254 return yaml
.safe_load(content
)
4255 except yaml
.scanner
.ScannerError
:
4258 return json
.loads(content
)
4261 raise ClientException(f
"{file_path} must be a valid yaml or json file")
4264 @cli_osm.command(name
="vca-update", short_help
="updates a K8s cluster")
4265 @click.argument("name")
4267 "--endpoints", help="Comma-separated list of IP or hostnames of the Juju controller"
4269 @click.option("--user", help="Username with admin priviledges")
4270 @click.option("--secret", help="Password of the specified username")
4271 @click.option("--cacert", help="CA certificate")
4274 help="Name of the cloud that will be used for LXD containers (LXD proxy charms)",
4277 "--lxd-credentials",
4278 help="Name of the cloud credentialsto be used for the LXD cloud",
4282 help="Name of the cloud that will be used for K8s containers (K8s proxy charms)",
4285 "--k8s-credentials",
4286 help="Name of the cloud credentialsto be used for the K8s cloud",
4290 help="Configuration options for the models",
4292 @click.option("--description", default
=None, help="human readable description")
4308 """updates a K8s cluster
4310 NAME: name or ID of the K8s cluster
4312 check_client_version(ctx
.obj
, ctx
.command
.name
)
4316 vca
["endpoints"] = endpoints
.split(",")
4320 vca
["secret"] = secret
4322 vca
["cacert"] = cacert
4324 vca
["lxd-cloud"] = lxd_cloud
4326 vca
["lxd-credentials"] = lxd_credentials
4328 vca
["k8s-cloud"] = k8s_cloud
4330 vca
["k8s-credentials"] = k8s_credentials
4332 vca
["description"] = description
4334 model_config
= load(model_config
)
4335 vca
["model-config"] = model_config
4336 ctx
.obj
.vca
.update(name
, vca
)
4339 @cli_osm.command(name
="vca-delete", short_help
="deletes a K8s cluster")
4340 @click.argument("name")
4342 "--force", is_flag
=True, help="forces the deletion from the DB (not recommended)"
4345 def vca_delete(ctx
, name
, force
):
4346 """deletes a K8s cluster
4348 NAME: name or ID of the K8s cluster to be deleted
4350 check_client_version(ctx
.obj
, ctx
.command
.name
)
4351 ctx
.obj
.vca
.delete(name
, force
=force
)
4354 @cli_osm.command(name
="vca-list")
4359 help="restricts the list to the VCAs matching the filter",
4361 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
4362 @click.option("--long", is_flag
=True, help="get more details")
4364 def vca_list(ctx
, filter, literal
, long):
4366 check_client_version(ctx
.obj
, ctx
.command
.name
)
4368 filter = "&".join(filter)
4369 resp
= ctx
.obj
.vca
.list(filter)
4371 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
4374 table
= PrettyTable(
4375 ["Name", "Id", "Project", "Operational State", "Detailed Status"]
4377 project_list
= ctx
.obj
.project
.list()
4379 table
= PrettyTable(["Name", "Id", "Operational State"])
4381 logger
.debug("VCA details: {}".format(yaml
.safe_dump(vca
)))
4383 project_id
, project_name
= get_project(project_list
, vca
)
4384 detailed_status
= vca
.get("_admin", {}).get("detailed-status", "-")
4390 vca
.get("_admin", {}).get("operationalState", "-"),
4391 wrap_text(text
=detailed_status
, width
=40),
4399 vca
.get("_admin", {}).get("operationalState", "-"),
4406 @cli_osm.command(name
="vca-show", short_help
="shows the details of a K8s cluster")
4407 @click.argument("name")
4408 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
4410 def vca_show(ctx
, name
, literal
):
4411 """shows the details of a K8s cluster
4413 NAME: name or ID of the K8s cluster
4416 resp
= ctx
.obj
.vca
.get(name
)
4418 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
4420 table
= PrettyTable(["key", "attribute"])
4421 for k
, v
in list(resp
.items()):
4422 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
4427 ###########################
4429 ###########################
4432 @cli_osm.command(name
="repo-add", short_help
="adds a repo to OSM")
4433 @click.argument("name")
4434 @click.argument("uri")
4437 type=click
.Choice(["helm-chart", "juju-bundle", "osm"]),
4439 help="type of repo (helm-chart for Helm Charts, juju-bundle for Juju Bundles, osm for OSM Repositories)",
4441 @click.option("--description", default
=None, help="human readable description")
4443 "--user", default
=None, help="OSM repository: The username of the OSM repository"
4448 help="OSM repository: The password of the OSM repository",
4450 # @click.option('--wait',
4452 # help='do not return the control immediately, but keep it until the operation is completed, or timeout')
4454 def repo_add(ctx
, **kwargs
):
4455 """adds a repo to OSM
4457 NAME: name of the repo
4458 URI: URI of the repo
4461 kwargs
= {k
: v
for k
, v
in kwargs
.items() if v
is not None}
4463 repo
["url"] = repo
.pop("uri")
4464 if repo
["type"] in ["helm-chart", "juju-bundle"]:
4465 ctx
.obj
.repo
.create(repo
["name"], repo
)
4467 ctx
.obj
.osmrepo
.create(repo
["name"], repo
)
4468 # except ClientException as e:
4473 @cli_osm.command(name
="repo-update", short_help
="updates a repo in OSM")
4474 @click.argument("name")
4475 @click.option("--newname", help="New name for the repo")
4476 @click.option("--uri", help="URI of the repo")
4477 @click.option("--description", help="human readable description")
4478 # @click.option('--wait',
4480 # help='do not return the control immediately, but keep it until the operation is completed, or timeout')
4482 def repo_update(ctx
, name
, newname
, uri
, description
):
4483 """updates a repo in OSM
4485 NAME: name of the repo
4488 check_client_version(ctx
.obj
, ctx
.command
.name
)
4491 repo
["name"] = newname
4495 repo
["description"] = description
4497 ctx
.obj
.repo
.update(name
, repo
)
4499 ctx
.obj
.osmrepo
.update(name
, repo
)
4501 # except ClientException as e:
4507 name
="repo-index", short_help
="Index a repository from a folder with artifacts"
4510 "--origin", default
=".", help="origin path where the artifacts are located"
4513 "--destination", default
=".", help="destination path where the index is deployed"
4516 def repo_index(ctx
, origin
, destination
):
4517 """Index a repository
4519 NAME: name or ID of the repo to be deleted
4521 check_client_version(ctx
.obj
, ctx
.command
.name
)
4522 ctx
.obj
.osmrepo
.repo_index(origin
, destination
)
4525 @cli_osm.command(name
="repo-delete", short_help
="deletes a repo")
4526 @click.argument("name")
4528 "--force", is_flag
=True, help="forces the deletion from the DB (not recommended)"
4530 # @click.option('--wait',
4532 # help='do not return the control immediately, but keep it until the operation is completed, or timeout')
4534 def repo_delete(ctx
, name
, force
):
4537 NAME: name or ID of the repo to be deleted
4541 ctx
.obj
.repo
.delete(name
, force
=force
)
4543 ctx
.obj
.osmrepo
.delete(name
, force
=force
)
4544 # except ClientException as e:
4549 @cli_osm.command(name
="repo-list")
4554 help="restricts the list to the repos matching the filter",
4556 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
4558 def repo_list(ctx
, filter, literal
):
4559 """list all repos"""
4562 check_client_version(ctx
.obj
, ctx
.command
.name
)
4564 filter = "&".join(filter)
4565 resp
= ctx
.obj
.repo
.list(filter)
4566 resp
+= ctx
.obj
.osmrepo
.list(filter)
4568 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
4570 table
= PrettyTable(["Name", "Id", "Type", "URI", "Description"])
4572 # cluster['k8s-nets'] = json.dumps(yaml.safe_load(cluster['k8s-nets']))
4579 trunc_text(repo
.get("description") or "", 40),
4585 # except ClientException as e:
4590 @cli_osm.command(name
="repo-show", short_help
="shows the details of a repo")
4591 @click.argument("name")
4592 @click.option("--literal", is_flag
=True, help="print literally, no pretty table")
4594 def repo_show(ctx
, name
, literal
):
4595 """shows the details of a repo
4597 NAME: name or ID of the repo
4600 resp
= ctx
.obj
.repo
.get(name
)
4602 resp
= ctx
.obj
.osmrepo
.get(name
)
4606 print(yaml
.safe_dump(resp
, indent
=4, default_flow_style
=False))
4608 table
= PrettyTable(["key", "attribute"])
4610 for k
, v
in list(resp
.items()):
4611 table
.add_row([k
, json
.dumps(v
, indent
=2)])
4615 # except ClientException as e:
4620 ####################
4621 # Project mgmt operations
4622 ####################
4625 @cli_osm.command(name
="project-create", short_help
="creates a new project")
4626 @click.argument("name")
4627 # @click.option('--description',
4628 # default='no description',
4629 # help='human readable description')
4630 @click.option("--domain-name", "domain_name", default
=None, help="assign to a domain")
4636 help="provide quotas. Can be used several times: 'quota1=number[,quota2=number,...]'. Quotas can be one "
4637 "of vnfds, nsds, nsts, pdus, nsrs, nsis, vim_accounts, wim_accounts, sdns, k8sclusters, k8srepos",
4640 def project_create(ctx
, name
, domain_name
, quotas
):
4641 """Creates a new project
4643 NAME: name of the project
4644 DOMAIN_NAME: optional domain name for the project when keystone authentication is used
4645 QUOTAS: set quotas for the project
4648 project
= {"name": name
}
4650 project
["domain_name"] = domain_name
4651 quotas_dict
= _process_project_quotas(quotas
)
4653 project
["quotas"] = quotas_dict
4656 check_client_version(ctx
.obj
, ctx
.command
.name
)
4657 ctx
.obj
.project
.create(name
, project
)
4658 # except ClientException as e:
4663 def _process_project_quotas(quota_list
):
4668 for quota
in quota_list
:
4669 for single_quota
in quota
.split(","):
4670 k
, v
= single_quota
.split("=")
4671 quotas_dict
[k
] = None if v
in ("None", "null", "") else int(v
)
4672 except (ValueError, TypeError):
4673 raise ClientException(
4674 "invalid format for 'quotas'. Use 'k1=v1,v1=v2'. v must be a integer or null"
4679 @cli_osm.command(name
="project-delete", short_help
="deletes a project")
4680 @click.argument("name")
4681 # @click.option('--force', is_flag=True, help='forces the deletion bypassing pre-conditions')
4683 def project_delete(ctx
, name
):
4684 """deletes a project
4686 NAME: name or ID of the project to be deleted
4690 check_client_version(ctx
.obj
, ctx
.command
.name
)
4691 ctx
.obj
.project
.delete(name
)
4692 # except ClientException as e:
4697 @cli_osm.command(name
="project-list", short_help
="list all projects")
4702 help="restricts the list to the projects matching the filter",
4705 def project_list(ctx
, filter):
4706 """list all projects"""
4709 check_client_version(ctx
.obj
, ctx
.command
.name
)
4711 filter = "&".join(filter)
4712 resp
= ctx
.obj
.project
.list(filter)
4713 # except ClientException as e:
4716 table
= PrettyTable(["name", "id"])
4718 table
.add_row([proj
["name"], proj
["_id"]])
4723 @cli_osm.command(name
="project-show", short_help
="shows the details of a project")
4724 @click.argument("name")
4726 def project_show(ctx
, name
):
4727 """shows the details of a project
4729 NAME: name or ID of the project
4733 check_client_version(ctx
.obj
, ctx
.command
.name
)
4734 resp
= ctx
.obj
.project
.get(name
)
4735 # except ClientException as e:
4739 table
= PrettyTable(["key", "attribute"])
4740 for k
, v
in resp
.items():
4741 table
.add_row([k
, json
.dumps(v
, indent
=2)])
4747 name
="project-update", short_help
="updates a project (only the name can be updated)"
4749 @click.argument("project")
4750 @click.option("--name", default
=None, help="new name for the project")
4756 help="change quotas. Can be used several times: 'quota1=number|empty[,quota2=...]' "
4757 "(use empty to reset quota to default",
4760 def project_update(ctx
, project
, name
, quotas
):
4762 Update a project name
4765 :param project: id or name of the project to modify
4766 :param name: new name for the project
4767 :param quotas: change quotas of the project
4771 project_changes
= {}
4773 project_changes
["name"] = name
4774 quotas_dict
= _process_project_quotas(quotas
)
4776 project_changes
["quotas"] = quotas_dict
4779 check_client_version(ctx
.obj
, ctx
.command
.name
)
4780 ctx
.obj
.project
.update(project
, project_changes
)
4781 # except ClientException as e:
4785 ####################
4786 # User mgmt operations
4787 ####################
4790 @cli_osm.command(name
="user-create", short_help
="creates a new user")
4791 @click.argument("username")
4796 confirmation_prompt
=True,
4797 help="user password",
4801 # prompt="Comma separate list of projects",
4803 callback
=lambda ctx
, param
, value
: "".join(value
).split(",")
4804 if all(len(x
) == 1 for x
in value
)
4806 help="list of project ids that the user belongs to",
4809 "--project-role-mappings",
4810 "project_role_mappings",
4813 help="assign role(s) in a project. Can be used several times: 'project,role1[,role2,...]'",
4815 @click.option("--domain-name", "domain_name", default
=None, help="assign to a domain")
4817 def user_create(ctx
, username
, password
, projects
, project_role_mappings
, domain_name
):
4818 """Creates a new user
4821 USERNAME: name of the user
4822 PASSWORD: password of the user
4823 PROJECTS: projects assigned to user (internal only)
4824 PROJECT_ROLE_MAPPING: roles in projects assigned to user (keystone)
4825 DOMAIN_NAME: optional domain name for the user when keystone authentication is used
4829 user
["username"] = username
4830 user
["password"] = password
4831 user
["projects"] = projects
4832 user
["project_role_mappings"] = project_role_mappings
4834 user
["domain_name"] = domain_name
4837 check_client_version(ctx
.obj
, ctx
.command
.name
)
4838 ctx
.obj
.user
.create(username
, user
)
4839 # except ClientException as e:
4844 @cli_osm.command(name
="user-update", short_help
="updates user information")
4845 @click.argument("username")
4850 # confirmation_prompt=True,
4851 help="user password",
4853 @click.option("--set-username", "set_username", default
=None, help="change username")
4859 help="create/replace the roles for this project: 'project,role1[,role2,...]'",
4866 help="removes project from user: 'project'",
4869 "--add-project-role",
4873 help="assign role(s) in a project. Can be used several times: 'project,role1[,role2,...]'",
4876 "--remove-project-role",
4877 "remove_project_role",
4880 help="remove role(s) in a project. Can be used several times: 'project,role1[,role2,...]'",
4882 @click.option("--change_password", "change_password", help="user's current password")
4886 help="user's new password to update in expiry condition",
4897 remove_project_role
,
4901 """Update a user information
4904 USERNAME: name of the user
4905 PASSWORD: new password
4906 SET_USERNAME: new username
4907 SET_PROJECT: creating mappings for project/role(s)
4908 REMOVE_PROJECT: deleting mappings for project/role(s)
4909 ADD_PROJECT_ROLE: adding mappings for project/role(s)
4910 REMOVE_PROJECT_ROLE: removing mappings for project/role(s)
4911 CHANGE_PASSWORD: user's current password to change
4912 NEW_PASSWORD: user's new password to update in expiry condition
4916 user
["password"] = password
4917 user
["username"] = set_username
4918 user
["set-project"] = set_project
4919 user
["remove-project"] = remove_project
4920 user
["add-project-role"] = add_project_role
4921 user
["remove-project-role"] = remove_project_role
4922 user
["change_password"] = change_password
4923 user
["new_password"] = new_password
4926 check_client_version(ctx
.obj
, ctx
.command
.name
)
4927 if not user
.get("change_password"):
4928 ctx
.obj
.user
.update(username
, user
)
4930 ctx
.obj
.user
.update(username
, user
, pwd_change
=True)
4931 # except ClientException as e:
4936 @cli_osm.command(name
="user-delete", short_help
="deletes a user")
4937 @click.argument("name")
4938 # @click.option('--force', is_flag=True, help='forces the deletion bypassing pre-conditions')
4940 def user_delete(ctx
, name
):
4944 NAME: name or ID of the user to be deleted
4948 check_client_version(ctx
.obj
, ctx
.command
.name
)
4949 ctx
.obj
.user
.delete(name
)
4950 # except ClientException as e:
4955 @cli_osm.command(name
="user-list", short_help
="list all users")
4960 help="restricts the list to the users matching the filter",
4963 def user_list(ctx
, filter):
4964 """list all users"""
4966 check_client_version(ctx
.obj
, ctx
.command
.name
)
4968 filter = "&".join(filter)
4969 resp
= ctx
.obj
.user
.list(filter)
4970 # except ClientException as e:
4973 table
= PrettyTable(["name", "id"])
4975 table
.add_row([user
["username"], user
["_id"]])
4980 @cli_osm.command(name
="user-show", short_help
="shows the details of a user")
4981 @click.argument("name")
4983 def user_show(ctx
, name
):
4984 """shows the details of a user
4986 NAME: name or ID of the user
4990 check_client_version(ctx
.obj
, ctx
.command
.name
)
4991 resp
= ctx
.obj
.user
.get(name
)
4992 if "password" in resp
:
4993 resp
["password"] = "********"
4994 # except ClientException as e:
4998 table
= PrettyTable(["key", "attribute"])
4999 for k
, v
in resp
.items():
5000 table
.add_row([k
, json
.dumps(v
, indent
=2)])
5005 ####################
5006 # Fault Management operations
5007 ####################
5010 @cli_osm.command(name
="ns-alarm-create")
5011 @click.argument("name")
5012 @click.option("--ns", prompt
=True, help="NS instance id or name")
5014 "--vnf", prompt
=True, help="VNF name (VNF member index as declared in the NSD)"
5016 @click.option("--vdu", prompt
=True, help="VDU name (VDU name as declared in the VNFD)")
5017 @click.option("--metric", prompt
=True, help="Name of the metric (e.g. cpu_utilization)")
5021 help="severity of the alarm (WARNING, MINOR, MAJOR, CRITICAL, INDETERMINATE)",
5024 "--threshold_value",
5026 help="threshold value that, when crossed, an alarm is triggered",
5029 "--threshold_operator",
5031 help="threshold operator describing the comparison (GE, LE, GT, LT, EQ)",
5036 help="statistic (AVERAGE, MINIMUM, MAXIMUM, COUNT, SUM)",
5039 def ns_alarm_create(
5051 """creates a new alarm for a NS instance"""
5052 # TODO: Check how to validate threshold_value.
5053 # Should it be an integer (1-100), percentage, or decimal (0.01-1.00)?
5056 ns_instance
= ctx
.obj
.ns
.get(ns
)
5058 alarm
["alarm_name"] = name
5059 alarm
["ns_id"] = ns_instance
["_id"]
5060 alarm
["correlation_id"] = ns_instance
["_id"]
5061 alarm
["vnf_member_index"] = vnf
5062 alarm
["vdu_name"] = vdu
5063 alarm
["metric_name"] = metric
5064 alarm
["severity"] = severity
5065 alarm
["threshold_value"] = int(threshold_value
)
5066 alarm
["operation"] = threshold_operator
5067 alarm
["statistic"] = statistic
5068 check_client_version(ctx
.obj
, ctx
.command
.name
)
5069 ctx
.obj
.ns
.create_alarm(alarm
)
5070 # except ClientException as e:
5075 # @cli_osm.command(name='ns-alarm-delete')
5076 # @click.argument('name')
5077 # @click.pass_context
5078 # def ns_alarm_delete(ctx, name):
5079 # """deletes an alarm
5081 # NAME: name of the alarm to be deleted
5084 # check_client_version(ctx.obj, ctx.command.name)
5085 # ctx.obj.ns.delete_alarm(name)
5086 # except ClientException as e:
5091 ####################
5092 # Performance Management operations
5093 ####################
5097 name
="ns-metric-export",
5098 short_help
="exports a metric to the internal OSM bus, which can be read by other apps",
5100 @click.option("--ns", prompt
=True, help="NS instance id or name")
5102 "--vnf", prompt
=True, help="VNF name (VNF member index as declared in the NSD)"
5104 @click.option("--vdu", prompt
=True, help="VDU name (VDU name as declared in the VNFD)")
5105 @click.option("--metric", prompt
=True, help="name of the metric (e.g. cpu_utilization)")
5106 # @click.option('--period', default='1w',
5107 # help='metric collection period (e.g. 20s, 30m, 2h, 3d, 1w)')
5109 "--interval", help="periodic interval (seconds) to export metrics continuously"
5112 def ns_metric_export(ctx
, ns
, vnf
, vdu
, metric
, interval
):
5113 """exports a metric to the internal OSM bus, which can be read by other apps"""
5114 # TODO: Check how to validate interval.
5115 # Should it be an integer (seconds), or should a suffix (s,m,h,d,w) also be permitted?
5118 ns_instance
= ctx
.obj
.ns
.get(ns
)
5120 metric_data
["ns_id"] = ns_instance
["_id"]
5121 metric_data
["correlation_id"] = ns_instance
["_id"]
5122 metric_data
["vnf_member_index"] = vnf
5123 metric_data
["vdu_name"] = vdu
5124 metric_data
["metric_name"] = metric
5125 metric_data
["collection_unit"] = "WEEK"
5126 metric_data
["collection_period"] = 1
5127 check_client_version(ctx
.obj
, ctx
.command
.name
)
5129 print("{}".format(ctx
.obj
.ns
.export_metric(metric_data
)))
5133 print("{} {}".format(ctx
.obj
.ns
.export_metric(metric_data
), i
))
5134 time
.sleep(int(interval
))
5136 # except ClientException as e:
5142 # Subscription operations
5147 name
="subscription-create",
5148 short_help
="creates a new subscription to a specific event",
5152 # type=click.Choice(['ns', 'nspkg', 'vnfpkg'], case_sensitive=False))
5153 type=click
.Choice(["ns"], case_sensitive
=False),
5154 help="event type to be subscribed (for the moment, only ns is supported)",
5156 @click.option("--event", default
=None, help="specific yaml configuration for the event")
5158 "--event_file", default
=None, help="specific yaml configuration file for the event"
5161 def subscription_create(ctx
, event_type
, event
, event_file
):
5162 """creates a new subscription to a specific event"""
5164 check_client_version(ctx
.obj
, ctx
.command
.name
)
5167 raise ClientException(
5168 '"--event" option is incompatible with "--event_file" option'
5170 with
open(event_file
, "r") as cf
:
5172 ctx
.obj
.subscription
.create(event_type
, event
)
5175 @cli_osm.command(name
="subscription-delete", short_help
="deletes a subscription")
5178 # type=click.Choice(['ns', 'nspkg', 'vnfpkg'], case_sensitive=False))
5179 type=click
.Choice(["ns"], case_sensitive
=False),
5180 help="event type to be subscribed (for the moment, only ns is supported)",
5182 @click.argument("subscription_id")
5184 "--force", is_flag
=True, help="forces the deletion bypassing pre-conditions"
5187 def subscription_delete(ctx
, event_type
, subscription_id
, force
):
5188 """deletes a subscription
5190 SUBSCRIPTION_ID: ID of the subscription to be deleted
5193 check_client_version(ctx
.obj
, ctx
.command
.name
)
5194 ctx
.obj
.subscription
.delete(event_type
, subscription_id
, force
)
5197 @cli_osm.command(name
="subscription-list", short_help
="list all subscriptions")
5200 # type=click.Choice(['ns', 'nspkg', 'vnfpkg'], case_sensitive=False))
5201 type=click
.Choice(["ns"], case_sensitive
=False),
5202 help="event type to be subscribed (for the moment, only ns is supported)",
5208 help="restricts the list to the subscriptions matching the filter",
5211 def subscription_list(ctx
, event_type
, filter):
5212 """list all subscriptions"""
5214 check_client_version(ctx
.obj
, ctx
.command
.name
)
5216 filter = "&".join(filter)
5217 resp
= ctx
.obj
.subscription
.list(event_type
, filter)
5218 table
= PrettyTable(["id", "filter", "CallbackUri"])
5223 wrap_text(text
=json
.dumps(sub
["filter"], indent
=2), width
=70),
5232 name
="subscription-show", short_help
="shows the details of a subscription"
5234 @click.argument("subscription_id")
5237 # type=click.Choice(['ns', 'nspkg', 'vnfpkg'], case_sensitive=False))
5238 type=click
.Choice(["ns"], case_sensitive
=False),
5239 help="event type to be subscribed (for the moment, only ns is supported)",
5244 help="restricts the information to the fields in the filter",
5247 def subscription_show(ctx
, event_type
, subscription_id
, filter):
5248 """shows the details of a subscription
5250 SUBSCRIPTION_ID: ID of the subscription
5254 resp
= ctx
.obj
.subscription
.get(subscription_id
)
5255 table
= PrettyTable(["key", "attribute"])
5256 for k
, v
in list(resp
.items()):
5257 if not filter or k
in filter:
5258 table
.add_row([k
, wrap_text(text
=json
.dumps(v
, indent
=2), width
=100)])
5263 ####################
5265 ####################
5268 @cli_osm.command(name
="version", short_help
="shows client and server versions")
5270 def get_version(ctx
):
5271 """shows client and server versions"""
5273 check_client_version(ctx
.obj
, "version")
5274 print("Server version: {}".format(ctx
.obj
.get_version()))
5276 "Client version: {}".format(pkg_resources
.get_distribution("osmclient").version
)
5278 # except ClientException as e:
5284 name
="upload-package", short_help
="uploads a VNF package or NS package"
5286 @click.argument("filename")
5288 "--skip-charm-build",
5291 help="the charm will not be compiled, it is assumed to already exist",
5294 def upload_package(ctx
, filename
, skip_charm_build
):
5295 """uploads a vnf package or ns package
5297 filename: vnf or ns package folder, or vnf or ns package file (tar.gz)
5301 ctx
.obj
.package
.upload(filename
, skip_charm_build
=skip_charm_build
)
5302 fullclassname
= ctx
.obj
.__module
__ + "." + ctx
.obj
.__class
__.__name
__
5303 if fullclassname
!= "osmclient.sol005.client.Client":
5304 ctx
.obj
.package
.wait_for_upload(filename
)
5305 # except ClientException as e:
5310 # @cli_osm.command(name='ns-scaling-show')
5311 # @click.argument('ns_name')
5312 # @click.pass_context
5313 # def show_ns_scaling(ctx, ns_name):
5314 # """shows the status of a NS scaling operation
5316 # NS_NAME: name of the NS instance being scaled
5319 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5320 # resp = ctx.obj.ns.list()
5321 # except ClientException as e:
5325 # table = PrettyTable(
5328 # 'operational status',
5333 # if ns_name == ns['name']:
5334 # nsopdata = ctx.obj.ns.get_opdata(ns['id'])
5335 # scaling_records = nsopdata['nsr:nsr']['scaling-group-record']
5336 # for record in scaling_records:
5337 # if 'instance' in record:
5338 # instances = record['instance']
5339 # for inst in instances:
5341 # [record['scaling-group-name-ref'],
5342 # inst['instance-id'],
5343 # inst['op-status'],
5344 # time.strftime('%Y-%m-%d %H:%M:%S',
5346 # inst['create-time'])),
5352 # @cli_osm.command(name='ns-scale')
5353 # @click.argument('ns_name')
5354 # @click.option('--ns_scale_group', prompt=True)
5355 # @click.option('--index', prompt=True)
5356 # @click.option('--wait',
5360 # help='do not return the control immediately, but keep it \
5361 # until the operation is completed, or timeout')
5362 # @click.pass_context
5363 # def ns_scale(ctx, ns_name, ns_scale_group, index, wait):
5366 # NS_NAME: name of the NS instance to be scaled
5369 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5370 # ctx.obj.ns.scale(ns_name, ns_scale_group, index, wait=wait)
5371 # except ClientException as e:
5376 # @cli_osm.command(name='config-agent-list')
5377 # @click.pass_context
5378 # def config_agent_list(ctx):
5379 # """list config agents"""
5381 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5382 # except ClientException as e:
5385 # table = PrettyTable(['name', 'account-type', 'details'])
5386 # for account in ctx.obj.vca.list():
5389 # account['account-type'],
5395 # @cli_osm.command(name='config-agent-delete')
5396 # @click.argument('name')
5397 # @click.pass_context
5398 # def config_agent_delete(ctx, name):
5399 # """deletes a config agent
5401 # NAME: name of the config agent to be deleted
5404 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5405 # ctx.obj.vca.delete(name)
5406 # except ClientException as e:
5411 # @cli_osm.command(name='config-agent-add')
5412 # @click.option('--name',
5414 # @click.option('--account_type',
5416 # @click.option('--server',
5418 # @click.option('--user',
5420 # @click.option('--secret',
5423 # confirmation_prompt=True)
5424 # @click.pass_context
5425 # def config_agent_add(ctx, name, account_type, server, user, secret):
5426 # """adds a config agent"""
5428 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5429 # ctx.obj.vca.create(name, account_type, server, user, secret)
5430 # except ClientException as e:
5435 # @cli_osm.command(name='ro-dump')
5436 # @click.pass_context
5438 # """shows RO agent information"""
5439 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5440 # resp = ctx.obj.vim.get_resource_orchestrator()
5441 # table = PrettyTable(['key', 'attribute'])
5442 # for k, v in list(resp.items()):
5443 # table.add_row([k, json.dumps(v, indent=2)])
5448 # @cli_osm.command(name='vcs-list')
5449 # @click.pass_context
5450 # def vcs_list(ctx):
5451 # check_client_version(ctx.obj, ctx.command.name, 'v1')
5452 # resp = ctx.obj.utils.get_vcs_info()
5453 # table = PrettyTable(['component name', 'state'])
5454 # for component in resp:
5455 # table.add_row([component['component_name'], component['state']])
5461 name
="ns-action", short_help
="executes an action/primitive over a NS instance"
5463 @click.argument("ns_name")
5467 help="member-vnf-index if the target is a vnf instead of a ns)",
5469 @click.option("--kdu_name", default
=None, help="kdu-name if the target is a kdu)")
5470 @click.option("--vdu_id", default
=None, help="vdu-id if the target is a vdu")
5472 "--vdu_count", default
=None, type=int, help="number of vdu instance of this vdu_id"
5474 @click.option("--action_name", prompt
=True, help="action name")
5475 @click.option("--params", default
=None, help="action params in YAML/JSON inline string")
5476 @click.option("--params_file", default
=None, help="YAML/JSON file with action params")
5478 "--timeout", required
=False, default
=None, type=int, help="timeout in seconds"
5485 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
5501 """executes an action/primitive over a NS instance
5503 NS_NAME: name or ID of the NS instance
5507 check_client_version(ctx
.obj
, ctx
.command
.name
)
5510 op_data
["member_vnf_index"] = vnf_name
5512 op_data
["kdu_name"] = kdu_name
5514 op_data
["vdu_id"] = vdu_id
5515 if vdu_count
is not None:
5516 op_data
["vdu_count_index"] = vdu_count
5518 op_data
["timeout_ns_action"] = timeout
5519 op_data
["primitive"] = action_name
5521 with
open(params_file
, "r") as pf
:
5524 op_data
["primitive_params"] = yaml
.safe_load(params
)
5526 op_data
["primitive_params"] = {}
5527 print(ctx
.obj
.ns
.exec_op(ns_name
, op_name
="action", op_data
=op_data
, wait
=wait
))
5529 # except ClientException as e:
5535 name
="vnf-scale", short_help
="executes a VNF scale (adding/removing VDUs)"
5537 @click.argument("ns_name")
5538 @click.argument("vnf_name")
5540 "--scaling-group", prompt
=True, help="scaling-group-descriptor name to use"
5543 "--scale-in", default
=False, is_flag
=True, help="performs a scale in operation"
5549 help="performs a scale out operation (by default)",
5552 "--timeout", required
=False, default
=None, type=int, help="timeout in seconds"
5559 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
5563 ctx
, ns_name
, vnf_name
, scaling_group
, scale_in
, scale_out
, timeout
, wait
5566 Executes a VNF scale (adding/removing VDUs)
5569 NS_NAME: name or ID of the NS instance.
5570 VNF_NAME: member-vnf-index in the NS to be scaled.
5574 check_client_version(ctx
.obj
, ctx
.command
.name
)
5575 if not scale_in
and not scale_out
:
5577 ctx
.obj
.ns
.scale_vnf(
5578 ns_name
, vnf_name
, scaling_group
, scale_in
, scale_out
, wait
, timeout
5580 # except ClientException as e:
5586 name
="ns-update", short_help
="executes an update of a Network Service."
5588 @click.argument("ns_name")
5590 "--updatetype", required
=True, type=str, help="available types: CHANGE_VNFPKG"
5596 help="extra information for update operation as YAML/JSON inline string as --config"
5597 " '{changeVnfPackageData:[{vnfInstanceId: xxx, vnfdId: yyy}]}'",
5600 "--timeout", required
=False, default
=None, type=int, help="timeout in seconds"
5607 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
5610 def update(ctx
, ns_name
, updatetype
, config
, timeout
, wait
):
5611 """Executes an update of a Network Service.
5613 The update will check new revisions of the Network Functions that are part of the
5614 Network Service, and it will update them if needed.
5615 Sample update command: osm ns-update ns_instance_id --updatetype CHANGE_VNFPKG
5616 --config '{changeVnfPackageData: [{vnfInstanceId: id_x,vnfdId: id_y}]}' --timeout 300 --wait
5618 NS_NAME: Network service instance name or ID.
5623 "updateType": updatetype
,
5626 op_data
["config"] = yaml
.safe_load(config
)
5628 check_client_version(ctx
.obj
, ctx
.command
.name
)
5629 ctx
.obj
.ns
.update(ns_name
, op_data
, wait
=wait
)
5632 def iterator_split(iterator
, separators
):
5634 Splits a tuple or list into several lists whenever a separator is found
5635 For instance, the following tuple will be separated with the separator "--vnf" as follows.
5637 ("--vnf", "A", "--cause", "cause_A", "--vdu", "vdu_A1", "--vnf", "B", "--cause", "cause_B", ...
5638 "--vdu", "vdu_B1", "--count_index", "1", "--run-day1", "--vdu", "vdu_B1", "--count_index", "2")
5641 ("--vnf", "A", "--cause", "cause_A", "--vdu", "vdu_A1"),
5642 ("--vnf", "B", "--cause", "cause_B", "--vdu", "vdu_B1", "--count_index", "1", "--run-day1", ...
5643 "--vdu", "vdu_B1", "--count_index", "2")
5646 Returns as many lists as separators are found
5649 if iterator
[0] not in separators
:
5650 raise ClientException(f
"Expected one of {separators}. Received: {iterator[0]}.")
5653 for i
in range(len(iterator
)):
5654 if iterator
[i
] in separators
:
5658 raise ClientException(
5659 f
"Expected at least one argument after separator (possible separators: {separators})."
5661 list_of_lists
.append(list(iterator
[first
:i
]))
5663 if (len(iterator
) - first
) < 2:
5664 raise ClientException(
5665 f
"Expected at least one argument after separator (possible separators: {separators})."
5668 list_of_lists
.append(list(iterator
[first
: len(iterator
)]))
5669 # logger.debug(f"List of lists: {list_of_lists}")
5670 return list_of_lists
5673 def process_common_heal_params(heal_vnf_dict
, args
):
5675 current_item
= "vnf"
5677 while i
< len(args
):
5678 if args
[i
] == "--cause":
5679 if (i
+ 1 >= len(args
)) or args
[i
+ 1].startswith("--"):
5680 raise ClientException("No cause was provided after --cause")
5681 heal_vnf_dict
["cause"] = args
[i
+ 1]
5684 if args
[i
] == "--run-day1":
5685 if current_item
== "vnf":
5686 if "additionalParams" not in heal_vnf_dict
:
5687 heal_vnf_dict
["additionalParams"] = {}
5688 heal_vnf_dict
["additionalParams"]["run-day1"] = True
5690 # if current_item == "vdu"
5691 heal_vnf_dict
["additionalParams"]["vdu"][-1]["run-day1"] = True
5694 if args
[i
] == "--vdu":
5695 if "additionalParams" not in heal_vnf_dict
:
5696 heal_vnf_dict
["additionalParams"] = {}
5697 heal_vnf_dict
["additionalParams"]["vdu"] = []
5698 if (i
+ 1 >= len(args
)) or args
[i
+ 1].startswith("--"):
5699 raise ClientException("No VDU ID was provided after --vdu")
5700 heal_vnf_dict
["additionalParams"]["vdu"].append({"vdu-id": args
[i
+ 1]})
5701 current_item
= "vdu"
5704 if args
[i
] == "--count-index":
5705 if current_item
== "vnf":
5706 raise ClientException(
5707 "Option --count-index only applies to VDU, not to VNF"
5709 if (i
+ 1 >= len(args
)) or args
[i
+ 1].startswith("--"):
5710 raise ClientException("No count index was provided after --count-index")
5711 heal_vnf_dict
["additionalParams"]["vdu"][-1]["count-index"] = int(
5720 def process_ns_heal_params(ctx
, param
, value
):
5722 Processes the params in the command ns-heal
5723 Click does not allow advanced patterns for positional options like this:
5724 --vnf volumes_vnf --cause "Heal several_volumes-VM of several_volumes_vnf"
5725 --vdu several_volumes-VM
5726 --vnf charm_vnf --cause "Heal two VMs of native_manual_scale_charm_vnf"
5727 --vdu mgmtVM --count-index 1 --run-day1
5728 --vdu mgmtVM --count-index 2
5730 It returns the dictionary with all the params stored in ctx.params["heal_params"]
5733 # logger.debug(f"Args: {value}")
5734 if param
.name
!= "args":
5735 raise ClientException(f
"Unexpected param: {param.name}")
5736 # Split the tuple "value" by "--vnf"
5737 vnfs
= iterator_split(value
, ["--vnf"])
5738 logger
.debug(f
"VNFs: {vnfs}")
5740 heal_dict
["healVnfData"] = []
5742 # logger.debug(f"VNF: {vnf}")
5744 if vnf
[1].startswith("--"):
5745 raise ClientException("Expected a VNF_ID after --vnf")
5746 heal_vnf
["vnfInstanceId"] = vnf
[1]
5747 process_common_heal_params(heal_vnf
, vnf
[2:])
5748 heal_dict
["healVnfData"].append(heal_vnf
)
5749 ctx
.params
["heal_params"] = heal_dict
5755 short_help
="heals (recreates) VNFs or VDUs of a NS instance",
5756 context_settings
=dict(
5757 ignore_unknown_options
=True,
5760 @click.argument("ns_name")
5764 type=click
.UNPROCESSED
,
5765 callback
=process_ns_heal_params
,
5767 @click.option("--timeout", type=int, default
=None, help="timeout in seconds")
5772 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
5775 def ns_heal(ctx
, ns_name
, args
, heal_params
, timeout
, wait
):
5776 """heals (recreates) VNFs or VDUs of a NS instance
5778 NS_NAME: name or ID of the NS instance
5782 --vnf TEXT VNF instance ID or VNF id in the NS [required]
5783 --cause TEXT human readable cause of the healing
5784 --run-day1 indicates whether or not to run day1 primitives for the VNF/VDU
5786 --count-index INTEGER count-index
5790 osm ns-heal NS_NAME|NS_ID --vnf volumes_vnf --cause "Heal several_volumes-VM of several_volumes_vnf"
5791 --vdu several_volumes-VM
5792 --vnf charm_vnf --cause "Heal two VMs of native_manual_scale_charm_vnf"
5793 --vdu mgmtVM --count-index 1 --run-day1
5794 --vdu mgmtVM --count-index 2
5797 heal_dict
= ctx
.params
["heal_params"]
5798 logger
.debug(f
"Heal dict:\n{yaml.safe_dump(heal_dict)}")
5799 # replace VNF id in the NS by the VNF instance ID
5800 for vnf
in heal_dict
["healVnfData"]:
5801 vnf_id
= vnf
["vnfInstanceId"]
5802 if not validate_uuid4(vnf_id
):
5803 vnf_filter
= f
"member-vnf-index-ref={vnf_id}"
5804 vnf_list
= ctx
.obj
.vnf
.list(ns
=ns_name
, filter=vnf_filter
)
5805 if len(vnf_list
) == 0:
5806 raise ClientException(
5807 f
"No VNF found in NS {ns_name} with filter {vnf_filter}"
5809 elif len(vnf_list
) == 1:
5810 vnf
["vnfInstanceId"] = vnf_list
[0]["_id"]
5812 raise ClientException(
5813 f
"More than 1 VNF found in NS {ns_name} with filter {vnf_filter}"
5815 logger
.debug(f
"Heal dict:\n{yaml.safe_dump(heal_dict)}")
5816 check_client_version(ctx
.obj
, ctx
.command
.name
)
5817 ctx
.obj
.ns
.heal(ns_name
, heal_dict
, wait
, timeout
)
5821 def process_vnf_heal_params(ctx
, param
, value
):
5823 Processes the params in the command vnf-heal
5824 Click does not allow advanced patterns for positional options like this:
5825 --vdu mgmtVM --count-index 1 --run-day1 --vdu mgmtVM --count-index 2
5827 It returns the dictionary with all the params stored in ctx.params["heal_params"]
5830 # logger.debug(f"Args: {value}")
5831 if param
.name
!= "args":
5832 raise ClientException(f
"Unexpected param: {param.name}")
5833 # Split the tuple "value" by "--vnf"
5836 heal_dict
["healVnfData"] = []
5837 logger
.debug(f
"VNF: {vnf}")
5838 heal_vnf
= {"vnfInstanceId": "id_to_be_substituted"}
5839 process_common_heal_params(heal_vnf
, vnf
)
5840 heal_dict
["healVnfData"].append(heal_vnf
)
5841 ctx
.params
["heal_params"] = heal_dict
5847 short_help
="heals (recreates) a VNF instance or the VDUs of a VNF instance",
5848 context_settings
=dict(
5849 ignore_unknown_options
=True,
5852 @click.argument("vnf_name")
5856 type=click
.UNPROCESSED
,
5857 callback
=process_vnf_heal_params
,
5859 @click.option("--timeout", type=int, default
=None, help="timeout in seconds")
5864 help="do not return the control immediately, but keep it until the operation is completed, or timeout",
5875 """heals (recreates) a VNF instance or the VDUs of a VNF instance
5877 VNF_NAME: name or ID of the VNF instance
5881 --cause TEXT human readable cause of the healing of the VNF
5882 --run-day1 indicates whether or not to run day1 primitives for the VNF/VDU
5884 --count-index INTEGER count-index
5888 osm vnf-heal VNF_INSTANCE_ID --vdu mgmtVM --count-index 1 --run-day1
5889 --vdu mgmtVM --count-index 2
5892 heal_dict
= ctx
.params
["heal_params"]
5893 heal_dict
["healVnfData"][-1]["vnfInstanceId"] = vnf_name
5894 logger
.debug(f
"Heal dict:\n{yaml.safe_dump(heal_dict)}")
5895 check_client_version(ctx
.obj
, ctx
.command
.name
)
5896 vnfr
= ctx
.obj
.vnf
.get(vnf_name
)
5897 ns_id
= vnfr
["nsr-id-ref"]
5898 ctx
.obj
.ns
.heal(ns_id
, heal_dict
, wait
, timeout
)
5902 @cli_osm.command(name
="alarm-show", short_help
="show alarm details")
5903 @click.argument("uuid")
5905 def alarm_show(ctx
, uuid
):
5906 """Show alarm's detail information"""
5908 check_client_version(ctx
.obj
, ctx
.command
.name
)
5909 resp
= ctx
.obj
.ns
.get_alarm(uuid
=uuid
)
5923 table
= PrettyTable(["key", "attribute"])
5925 # Arrange and return the response data
5926 alarm
= resp
.replace("ObjectId", "")
5927 for key
in alarm_filter
:
5929 value
= alarm
.get(key
)
5932 value
= alarm
.get(key
)
5934 elif key
== "ns-id":
5935 value
= alarm
["tags"].get("ns_id")
5936 elif key
== "vdu_name":
5937 value
= alarm
["tags"].get("vdu_name")
5938 elif key
== "status":
5939 value
= alarm
["alarm_status"]
5942 table
.add_row([key
, wrap_text(text
=json
.dumps(value
, indent
=2), width
=100)])
5950 @cli_osm.command(name
="alarm-list", short_help
="list all alarms")
5952 "--ns_id", default
=None, required
=False, help="List out alarm for given ns id"
5955 def alarm_list(ctx
, ns_id
):
5956 """list all alarm"""
5958 check_client_version(ctx
.obj
, ctx
.command
.name
)
5959 project_name
= os
.getenv("OSM_PROJECT", "admin")
5960 resp
= ctx
.obj
.ns
.get_alarm(project_name
=project_name
, ns_id
=ns_id
)
5962 table
= PrettyTable(
5963 ["alarm-id", "metric", "threshold", "operation", "action", "status"]
5966 # return the response data in a table
5967 resp
= resp
.replace("ObjectId", "")
5971 wrap_text(text
=str(alarm
["uuid"]), width
=38),
5975 wrap_text(text
=alarm
["action"], width
=25),
5976 alarm
["alarm_status"],
5984 @cli_osm.command(name
="alarm-update", short_help
="Update a alarm")
5985 @click.argument("uuid")
5986 @click.option("--threshold", default
=None, help="Alarm threshold")
5987 @click.option("--is_enable", default
=None, type=bool, help="enable or disable alarm")
5989 def alarm_update(ctx
, uuid
, threshold
, is_enable
):
5994 if not threshold
and is_enable
is None:
5995 raise ClientException(
5996 "Please provide option to update i.e threshold or is_enable"
5998 ctx
.obj
.ns
.update_alarm(uuid
, threshold
, is_enable
)
6001 ##############################
6002 # Role Management Operations #
6003 ##############################
6006 @cli_osm.command(name
="role-create", short_help
="creates a new role")
6007 @click.argument("name")
6008 @click.option("--permissions", default
=None, help="role permissions using a dictionary")
6010 def role_create(ctx
, name
, permissions
):
6015 NAME: Name or ID of the role.
6016 DEFINITION: Definition of grant/denial of access to resources.
6020 check_client_version(ctx
.obj
, ctx
.command
.name
)
6021 ctx
.obj
.role
.create(name
, permissions
)
6022 # except ClientException as e:
6027 @cli_osm.command(name
="role-update", short_help
="updates a role")
6028 @click.argument("name")
6029 @click.option("--set-name", default
=None, help="change name of rle")
6030 # @click.option('--permissions',
6032 # help='provide a yaml format dictionary with incremental changes. Values can be bool or None to delete')
6036 help="yaml format dictionary with permission: True/False to access grant/denial",
6038 @click.option("--remove", default
=None, help="yaml format list to remove a permission")
6040 def role_update(ctx
, name
, set_name
, add
, remove
):
6045 NAME: Name or ID of the role.
6046 DEFINITION: Definition overwrites the old definition.
6047 ADD: Grant/denial of access to resource to add.
6048 REMOVE: Grant/denial of access to resource to remove.
6052 check_client_version(ctx
.obj
, ctx
.command
.name
)
6053 ctx
.obj
.role
.update(name
, set_name
, None, add
, remove
)
6054 # except ClientException as e:
6059 @cli_osm.command(name
="role-delete", short_help
="deletes a role")
6060 @click.argument("name")
6061 # @click.option('--force', is_flag=True, help='forces the deletion bypassing pre-conditions')
6063 def role_delete(ctx
, name
):
6068 NAME: Name or ID of the role.
6072 check_client_version(ctx
.obj
, ctx
.command
.name
)
6073 ctx
.obj
.role
.delete(name
)
6074 # except ClientException as e:
6079 @cli_osm.command(name
="role-list", short_help
="list all roles")
6084 help="restricts the list to the projects matching the filter",
6087 def role_list(ctx
, filter):
6093 check_client_version(ctx
.obj
, ctx
.command
.name
)
6095 filter = "&".join(filter)
6096 resp
= ctx
.obj
.role
.list(filter)
6097 # except ClientException as e:
6100 table
= PrettyTable(["name", "id"])
6102 table
.add_row([role
["name"], role
["_id"]])
6107 @cli_osm.command(name
="role-show", short_help
="show specific role")
6108 @click.argument("name")
6110 def role_show(ctx
, name
):
6112 Shows the details of a role.
6115 NAME: Name or ID of the role.
6119 check_client_version(ctx
.obj
, ctx
.command
.name
)
6120 resp
= ctx
.obj
.role
.get(name
)
6121 # except ClientException as e:
6125 table
= PrettyTable(["key", "attribute"])
6126 for k
, v
in resp
.items():
6127 table
.add_row([k
, json
.dumps(v
, indent
=2)])
6132 @cli_osm.command(name
="package-create", short_help
="Create empty NS package structure")
6133 @click.argument("package-type")
6134 @click.argument("package-name")
6138 help=('(NS/VNF/NST) Set the location for package creation. Default: "."'),
6142 default
="image-name",
6143 help='(VNF) Set the name of the vdu image. Default "image-name"',
6146 "--vdus", default
=1, help="(VNF) Set the number of vdus in a VNF. Default 1"
6149 "--vcpu", default
=1, help="(VNF) Set the number of virtual CPUs in a vdu. Default 1"
6154 help="(VNF) Set the memory size (MB) of the vdu. Default 1024",
6157 "--storage", default
=10, help="(VNF) Set the disk size (GB) of the vdu. Default 10"
6162 help="(VNF) Set the number of additional interfaces apart from the management interface. Default 0",
6165 "--vendor", default
="OSM", help='(NS/VNF) Set the descriptor vendor. Default "OSM"'
6171 help="(NS/VNF/NST) Flag for overriding the package if exists.",
6177 help="(NS/VNF/NST) Flag for generating descriptor .yaml with all possible commented options",
6180 "--netslice-subnets", default
=1, help="(NST) Number of netslice subnets. Default 1"
6183 "--netslice-vlds", default
=1, help="(NST) Number of netslice vlds. Default 1"
6189 help="Flag to create a descriptor using the previous OSM format (pre SOL006, OSM<9)",
6211 Creates an OSM NS, VNF, NST package
6214 PACKAGE_TYPE: Package to be created: NS, VNF or NST.
6215 PACKAGE_NAME: Name of the package to create the folder with the content.
6220 check_client_version(ctx
.obj
, ctx
.command
.name
)
6222 "Creating the {} structure: {}/{}".format(
6223 package_type
.upper(), base_directory
, package_name
6226 resp
= ctx
.obj
.package_tool
.create(
6236 interfaces
=interfaces
,
6239 netslice_subnets
=netslice_subnets
,
6240 netslice_vlds
=netslice_vlds
,
6244 # except ClientException as inst:
6245 # print("ERROR: {}".format(inst))
6250 name
="package-validate", short_help
="Validate descriptors given a base directory"
6252 @click.argument("base-directory", default
=".", required
=False)
6254 "--recursive/--no-recursive",
6256 help="The activated recursive option will validate the yaml files"
6257 " within the indicated directory and in its subdirectories",
6263 help="Validates also the descriptors using the previous OSM format (pre SOL006)",
6266 def package_validate(ctx
, base_directory
, recursive
, old
):
6268 Validate descriptors given a base directory.
6271 BASE_DIRECTORY: Base folder for NS, VNF or NST package.
6275 check_client_version(ctx
.obj
, ctx
.command
.name
)
6276 results
= ctx
.obj
.package_tool
.validate(base_directory
, recursive
, old
)
6277 table
= PrettyTable()
6278 table
.field_names
= ["TYPE", "PATH", "VALID", "ERROR"]
6279 # Print the dictionary generated by the validation function
6280 for result
in results
:
6282 [result
["type"], result
["path"], result
["valid"], result
["error"]]
6284 table
.sortby
= "VALID"
6285 table
.align
["PATH"] = "l"
6286 table
.align
["TYPE"] = "l"
6287 table
.align
["ERROR"] = "l"
6289 # except ClientException as inst:
6290 # print("ERROR: {}".format(inst))
6295 name
="package-translate", short_help
="Translate descriptors given a base directory"
6297 @click.argument("base-directory", default
=".", required
=False)
6299 "--recursive/--no-recursive",
6301 help="The activated recursive option will translate the yaml files"
6302 " within the indicated directory and in its subdirectories",
6308 help="Do not translate yet, only make a dry-run to test translation",
6311 def package_translate(ctx
, base_directory
, recursive
, dryrun
):
6313 Translate descriptors given a base directory.
6316 BASE_DIRECTORY: Stub folder for NS, VNF or NST package.
6319 check_client_version(ctx
.obj
, ctx
.command
.name
)
6320 results
= ctx
.obj
.package_tool
.translate(base_directory
, recursive
, dryrun
)
6321 table
= PrettyTable()
6322 table
.field_names
= [
6330 # Print the dictionary generated by the validation function
6331 for result
in results
:
6334 result
["current type"],
6338 result
["translated"],
6342 table
.sortby
= "TRANSLATED"
6343 table
.align
["PATH"] = "l"
6344 table
.align
["TYPE"] = "l"
6345 table
.align
["ERROR"] = "l"
6347 # except ClientException as inst:
6348 # print("ERROR: {}".format(inst))
6352 @cli_osm.command(name
="package-build", short_help
="Build the tar.gz of the package")
6353 @click.argument("package-folder")
6355 "--skip-validation", default
=False, is_flag
=True, help="skip package validation"
6358 "--skip-charm-build",
6361 help="the charm will not be compiled, it is assumed to already exist",
6364 def package_build(ctx
, package_folder
, skip_validation
, skip_charm_build
):
6366 Build the package NS, VNF given the package_folder.
6369 PACKAGE_FOLDER: Folder of the NS, VNF or NST to be packaged
6373 check_client_version(ctx
.obj
, ctx
.command
.name
)
6374 results
= ctx
.obj
.package_tool
.build(
6376 skip_validation
=skip_validation
,
6377 skip_charm_build
=skip_charm_build
,
6380 # except ClientException as inst:
6381 # print("ERROR: {}".format(inst))
6386 name
="descriptor-translate",
6387 short_help
="Translate input descriptor file from Rel EIGHT OSM descriptors to SOL006 and prints in standard output",
6389 @click.argument("descriptor-file", required
=True)
6391 def descriptor_translate(ctx
, descriptor_file
):
6393 Translate input descriptor.
6396 DESCRIPTOR_FILE: Descriptor file for NS, VNF or Network Slice.
6399 check_client_version(ctx
.obj
, ctx
.command
.name
)
6400 result
= ctx
.obj
.package_tool
.descriptor_translate(descriptor_file
)
6406 cli_osm() # pylint: disable=no-value-for-parameter
6408 except pycurl
.error
as exc
:
6411 'Maybe "--hostname" option or OSM_HOSTNAME environment variable needs to be specified'
6413 except ClientException
as exc
:
6414 print("ERROR: {}".format(exc
))
6415 except (FileNotFoundError
, PermissionError
) as exc
:
6416 print("Cannot open file: {}".format(exc
))
6417 except yaml
.YAMLError
as exc
:
6418 print("Invalid YAML format: {}".format(exc
))
6420 # TODO capture other controlled exceptions here
6421 # TODO remove the ClientException captures from all places, unless they do something different
6424 if __name__
== "__main__":