Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# CHANGELOG
# Release History

## v2.2.0 (Unreleases)

> Release Date: Unreleased

Bugfix:

- Updates `Publish-StorageCapacityHealth` to correct [GH-147](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/issues/147). [GH-148](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/148)


## [v2.1.0](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/releases/tag/v2.1.0)

Expand Down
6 changes: 3 additions & 3 deletions VMware.CloudFoundation.Reporting.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Gary Blake, Cloud Infrastructure Business Group (CIBG)
#
# Generated on: 05/30/2023
# Generated on: 06/27/2023
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = '.\VMware.CloudFoundation.Reporting.psm1'

# Version number of this module.
ModuleVersion = '2.1.0.1011'
ModuleVersion = '2.2.0.1000'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -129,4 +129,4 @@
# DefaultCommandPrefix = ''

}


3 changes: 3 additions & 0 deletions VMware.CloudFoundation.Reporting.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -3719,6 +3719,9 @@ Function Publish-StorageCapacityHealth {
$allWorkloadDomains = Get-VCFWorkloadDomain
$singleWorkloadDomain = Get-VCFWorkloadDomain | Where-Object {$_.name -eq $workloadDomain}
$allStorageCapacityHealth = New-Object System.Collections.ArrayList
$allVcenterStorageHealth = New-Object System.Collections.ArrayList
$allEsxiStorageCapacity = New-Object System.Collections.ArrayList
$allDatastoreStorageCapacity = New-Object System.Collections.ArrayList

if ($PsBoundParameters.ContainsKey("allDomains")) {
if ($PsBoundParameters.ContainsKey("failureOnly")) {
Expand Down