salt-ext-modules-vmware icon indicating copy to clipboard operation
salt-ext-modules-vmware copied to clipboard

Salt Extension Modules for VMware

Results 92 salt-ext-modules-vmware issues
Sort by recently updated
recently updated
newest added

``` def test_acceptance_level(service_instance): """ Test acceptance level on esxi host """ ret = esxi.set_acceptance_level( acceptance_level="community", service_instance=service_instance, datacenter_name="Datacenter", cluster_name="Cluster", ) for h in ret: assert ret[h] == "community" ret = esxi.get_acceptance_level(...

test-failure

``` def test_esxi_get_lun_ids_should_return_lun_NAA_ids(service_instance, integration_test_config): expected_lun_ids = integration_test_config["esxi_datastore_disk_names"] actual_ids = esxi.get_lun_ids(service_instance=service_instance) > assert actual_ids == expected_lun_ids E AssertionError: assert ['mpx.vmhba0:...ba0:C0:T0:L0'] == ['mpx.vmhba0:C0:T0:L0'] E Left contains one more item: 'mpx.vmhba0:C0:T0:L0' E Full...

test-failure

This test is failing ``` def test_get(vmware_datacenter, service_instance): """ Test scenarios for get datacenter. """ # Get a non existent datacenter. Should return False dc1_name = str(uuid.uuid4()) > dc1 =...

test-failure

**suggestion** (non-blocking) - probably better as (part of) another PR - can use `"... -m json.tool | grep -A4 '"vcenter_detail"'`, to provide the full command like the other examples. _Originally...

In order to actually focus on automating the release tasks, we need an issue for it. This issue is to track the [automation of part of the release process](https://docs.saltproject.io/salt/extensions/salt-ext-modules-vmware/en/latest/release.html) The...

Currently we're using the test_value_scraper.py as a workaround. We need to replace test_value_scraper.py with proper fixtures that take the service instance and ensure that specific datacenters, vms, etc. are all...

Currently `vmc_request.call_api` returns `{"error": "reason"}` on errors. Errors should be thrown up the stack. We need to define a few Exception types and raise those.

VMC is currently using `name` for salt logging and not much else. In salt it's normal for `name` in state functions to be the static identifier for the object being...

80% of the variables in `vmc_constants.py` are only used one time, and 95% of the time the variables are re-used, they are like `GET_REQUEST_METHOD = "get"`, and it's better to...

When I create a SDDC using a state file like this and then add arguments for num_hosts, hostname, etc: create_sddc: module.run: - name: vmc_sddc.create It creates the SDDC in VMC....