-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHyperVClusterPlatform.psd1
More file actions
71 lines (67 loc) · 3.05 KB
/
HyperVClusterPlatform.psd1
File metadata and controls
71 lines (67 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@{
RootModule = 'HyperVClusterPlatform.psm1'
ModuleVersion = '21.1.0'
GUID = 'b5c96ad8-5ffb-4f70-9e3c-3e0ff1f31d1f'
Author = 'E. Black'
CompanyName = ''
Copyright = '(c) 2026 E. Black. All rights reserved.'
Description = 'Hyper-V Cluster deployment, compliance, and fleet management platform (Audit/Enforce/Remediate). Supports Windows Server 2022 and 2025. Includes network automation, VM placement, storage, health monitoring, alerting, secret management, fleet orchestration, live migration, DR, and production certification.'
PowerShellVersion = '5.1'
# FailoverClusters and Hyper-V are validated at runtime by Test-HVPrerequisites.
RequiredModules = @()
FunctionsToExport = @(
'Invoke-HVClusterPlatform'
'Invoke-HVClusterFleet'
'Get-HVClusterHealth'
'Invoke-HVHealthAlertPolicy'
'Invoke-HVCertificationSuite'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
FileList = @(
'HyperVClusterPlatform.psm1'
'Public\Invoke-HVClusterPlatform.ps1'
'Public\Invoke-HVClusterFleet.ps1'
'Private\Logging.ps1'
'Private\CommandAliases.ps1'
'Private\DesiredState.ps1'
'Private\Preflight.ps1'
'Private\NodeValidation.ps1'
'Private\Snapshot.ps1'
'Private\DriftEngine.ps1'
'Private\ComplianceReport.ps1'
'Private\Enforcement.ps1'
'Private\Rollback.ps1'
'Private\Configuration.ps1'
'Private\NetworkConfig.ps1'
'Private\VMPlacement.ps1'
'Private\StorageConfig.ps1'
'Private\HealthCheck.ps1'
'Private\Alerting.ps1'
'Private\SecretManagement.ps1'
'Private\TelemetryExport.ps1'
'Private\LiveMigration.ps1'
'Private\DisasterRecovery.ps1'
'Private\CertificationSuite.ps1'
)
PrivateData = @{
PSData = @{
Tags = @('Hyper-V','FailoverClusters','Compliance','Automation','DSC',
'WS2022','WS2025','LiveMigration','DisasterRecovery','FleetManagement',
'HealthMonitoring','SecretManagement','Certification')
LicenseUri = 'https://github.com/eblackrps/HyperVClusterPlatform/blob/main/LICENSE'
ProjectUri = 'https://github.com/eblackrps/HyperVClusterPlatform'
ReleaseNotes = @'
v21.1.0 — Operational safety and release hardening:
- Fixed CLI-vs-config mode precedence so explicit operator intent wins
- Added unique operation-scoped artifact naming for snapshots, reports, journals, telemetry, and fleet output
- Surfaced rollback status, actions, and errors in platform results
- Split skipped cluster validation from failed cluster validation in public output
- Hardened fleet temp config handling and audit fleet status semantics
- Corrected GitHub release packaging and native command exit handling
- Refreshed README, roadmap, changelog, and release metadata for the shipped version
'@
}
}
}