fb-vmware 1.8.2__tar.gz → 1.8.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/PKG-INFO +1 -1
- fb_vmware-1.8.3/data/share/locale/de/LC_MESSAGES/fb_vmware.mo +0 -0
- fb_vmware-1.8.3/data/share/locale/en/LC_MESSAGES/fb_vmware.mo +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/__init__.py +1 -1
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/datastore.py +4 -3
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/ds_cluster.py +4 -3
- fb_vmware-1.8.2/data/share/locale/de/LC_MESSAGES/fb_vmware.mo +0 -0
- fb_vmware-1.8.2/data/share/locale/en/LC_MESSAGES/fb_vmware.mo +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/LICENSE +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/README.md +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/pyproject.toml +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/about.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/__init__.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_host_list.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_network_list.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_rpool_list.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_storage_cluster_info.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_storage_cluster_list.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_storage_list.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_vm_info.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/get_vm_list.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/app/search_storage.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/argparse_actions.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/base.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/cluster.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/config/__init__.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/connect.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/controller.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/dc.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/disk.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/dvs.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/errors.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/ether.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/host.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/host_port_group.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/iface.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/network.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/obj.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/typed_dict.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/vm.py +0 -0
- {fb_vmware-1.8.2 → fb_vmware-1.8.3}/src/fb_vmware/xlate.py +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -34,7 +34,7 @@ from .errors import VSphereNoDatastoreFoundError
|
|
|
34
34
|
from .obj import VsphereObject
|
|
35
35
|
from .xlate import XLATOR
|
|
36
36
|
|
|
37
|
-
__version__ = "1.8.
|
|
37
|
+
__version__ = "1.8.4"
|
|
38
38
|
LOG = logging.getLogger(__name__)
|
|
39
39
|
|
|
40
40
|
_ = XLATOR.gettext
|
|
@@ -917,6 +917,7 @@ class VsphereDatastoreDict(MutableMapping, FbGenericBaseObject):
|
|
|
917
917
|
use_random_select=use_random_select,
|
|
918
918
|
)
|
|
919
919
|
if ds_name:
|
|
920
|
+
LOG.debug(_("Found usable datastore {!r}.").format(ds_name))
|
|
920
921
|
return ds_name
|
|
921
922
|
|
|
922
923
|
raise VSphereNoDatastoreFoundError(needed_gb)
|
|
@@ -932,7 +933,7 @@ class VsphereDatastoreDict(MutableMapping, FbGenericBaseObject):
|
|
|
932
933
|
):
|
|
933
934
|
|
|
934
935
|
LOG.debug(
|
|
935
|
-
_("Searching datastore for {c:
|
|
936
|
+
_("Searching datastore for {c:0.1f} GiB of type {t!r}.").format(
|
|
936
937
|
c=needed_gb, t=storage_type
|
|
937
938
|
)
|
|
938
939
|
)
|
|
@@ -952,7 +953,7 @@ class VsphereDatastoreDict(MutableMapping, FbGenericBaseObject):
|
|
|
952
953
|
if usable and compute_cluster:
|
|
953
954
|
if ds.compute_clusters is None:
|
|
954
955
|
msg = _(
|
|
955
|
-
"Cannot detect connection with compute cluster {
|
|
956
|
+
"Cannot detect connection with compute cluster {!r}, datastore "
|
|
956
957
|
"was not detailled discovered."
|
|
957
958
|
).format(ds_name)
|
|
958
959
|
raise FbVMWareRuntimeError(msg)
|
|
@@ -35,7 +35,7 @@ from .errors import VSphereNoDsClusterFoundError
|
|
|
35
35
|
from .obj import VsphereObject
|
|
36
36
|
from .xlate import XLATOR
|
|
37
37
|
|
|
38
|
-
__version__ = "1.8.
|
|
38
|
+
__version__ = "1.8.4"
|
|
39
39
|
LOG = logging.getLogger(__name__)
|
|
40
40
|
|
|
41
41
|
_ = XLATOR.gettext
|
|
@@ -688,6 +688,7 @@ class VsphereDsClusterDict(MutableMapping, FbGenericBaseObject):
|
|
|
688
688
|
use_random_select=use_random_select,
|
|
689
689
|
)
|
|
690
690
|
if ds_cluster_name:
|
|
691
|
+
LOG.debug(_("Found usable datastore cluster {!r}.").format(ds_cluster_name))
|
|
691
692
|
return ds_cluster_name
|
|
692
693
|
|
|
693
694
|
raise VSphereNoDsClusterFoundError(needed_gb)
|
|
@@ -703,7 +704,7 @@ class VsphereDsClusterDict(MutableMapping, FbGenericBaseObject):
|
|
|
703
704
|
):
|
|
704
705
|
|
|
705
706
|
LOG.debug(
|
|
706
|
-
_("Searching datastore cluster for {c:
|
|
707
|
+
_("Searching datastore cluster for {c:0.1f} GiB of type {t!r}.").format(
|
|
707
708
|
c=needed_gb, t=storage_type
|
|
708
709
|
)
|
|
709
710
|
)
|
|
@@ -723,7 +724,7 @@ class VsphereDsClusterDict(MutableMapping, FbGenericBaseObject):
|
|
|
723
724
|
if usable and compute_cluster:
|
|
724
725
|
if dsc.compute_clusters is None:
|
|
725
726
|
msg = _(
|
|
726
|
-
"Cannot detect connection with compute cluster {
|
|
727
|
+
"Cannot detect connection with compute cluster {!r}, datastore cluster "
|
|
727
728
|
"was not detailled discovered."
|
|
728
729
|
).format(dsc_name)
|
|
729
730
|
raise FbVMWareRuntimeError(msg)
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|