Update vCenter-SSL.ps1

This commit is contained in:
2025-11-15 20:21:51 -06:00
parent b5cb65cf98
commit f7391b49de

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env pwsh #!/usr/bin/env pwsh
# ----------------------------------------------------------------------------------- # -----------------------------------------------------------------------------------
# vCenter + Posh-ACME Script (Fully Automated with Verbose Logging and SSH Fallback) # vCenter + Posh-ACME Script (Fully Automated with Verbose Logging)
# ----------------------------------------------------------------------------------- # -----------------------------------------------------------------------------------
. /opt/idssys/nodemgmt/conf/powerwall/settings.ps1 . /opt/idssys/nodemgmt/conf/powerwall/settings.ps1
@@ -36,6 +36,8 @@ if (-not (Get-Module -ListAvailable -Name VMware.PowerCLI)) {
Install-Module -Name VMware.PowerCLI -Force -Scope AllUsers Install-Module -Name VMware.PowerCLI -Force -Scope AllUsers
} }
Import-Module VMware.PowerCLI -ErrorAction Stop Import-Module VMware.PowerCLI -ErrorAction Stop
# Ignore self-signed cert warnings
Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false | Out-Null Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false | Out-Null
# ---------------------------- # ----------------------------
@@ -102,6 +104,7 @@ try {
# Collect certificate paths dynamically # Collect certificate paths dynamically
# ---------------------------- # ----------------------------
if ($certSuccess) { if ($certSuccess) {
# Get the most recent order
$paOrder = Get-PAOrder | Sort-Object Created -Descending | Select-Object -First 1 $paOrder = Get-PAOrder | Sort-Object Created -Descending | Select-Object -First 1
$certFolder = $paOrder.CertFolder $certFolder = $paOrder.CertFolder
@@ -118,7 +121,7 @@ if ($certSuccess) {
} }
# ---------------------------- # ----------------------------
# Upload and apply certificate via REST with verbose logging # Upload and apply certificate via REST (with verbose logging)
# ---------------------------- # ----------------------------
if ($certSuccess) { if ($certSuccess) {
try { try {
@@ -132,15 +135,24 @@ if ($certSuccess) {
chain = Get-Content -Path $chainPath -Raw chain = Get-Content -Path $chainPath -Raw
} }
$jsonBody = $body | ConvertTo-Json -Compress
$uriUpload = "https://$VCENTERHOST/rest/vcenter/certificate-management/vcenter/tls" $uriUpload = "https://$VCENTERHOST/rest/vcenter/certificate-management/vcenter/tls"
Write-Host "Uploading TLS certificate to vCenter..." -ForegroundColor Cyan Write-Host "Uploading TLS certificate to vCenter..." -ForegroundColor Cyan
Invoke-RestMethod -Uri $uriUpload -Method Post -Body ($body | ConvertTo-Json -Compress) -ContentType 'application/json' -Headers $sessionHeaders -SkipCertificateCheck Write-Host "URI: $uriUpload" -ForegroundColor DarkCyan
Write-Host "Certificate uploaded successfully." -ForegroundColor Green Write-Host "Headers: $(ConvertTo-Json $sessionHeaders -Compress)" -ForegroundColor DarkCyan
Write-Host "Body length: $($jsonBody.Length) characters" -ForegroundColor DarkCyan
$uploadResp = Invoke-RestMethod -Uri $uriUpload -Method Post -Body $jsonBody -ContentType 'application/json' -Headers $sessionHeaders -SkipCertificateCheck -Verbose
Write-Host "Upload response: $(ConvertTo-Json $uploadResp -Compress)" -ForegroundColor Green
$uriApply = "https://$VCENTERHOST/rest/vcenter/certificate-management/vcenter/tls?action=apply" $uriApply = "https://$VCENTERHOST/rest/vcenter/certificate-management/vcenter/tls?action=apply"
Write-Host "Applying TLS certificate to vCenter..." -ForegroundColor Cyan Write-Host "Applying TLS certificate to vCenter..." -ForegroundColor Cyan
Invoke-RestMethod -Uri $uriApply -Method Post -Headers $sessionHeaders -SkipCertificateCheck Write-Host "URI: $uriApply" -ForegroundColor DarkCyan
Write-Host "Certificate applied successfully." -ForegroundColor Green $applyResp = Invoke-RestMethod -Uri $uriApply -Method Post -Headers $sessionHeaders -SkipCertificateCheck -Verbose
Write-Host "Apply response: $(ConvertTo-Json $applyResp -Compress)" -ForegroundColor Green
Write-Host "Certificate uploaded and applied successfully." -ForegroundColor Green
} catch { } catch {
Write-Host "Certificate upload/apply failed: $($_.Exception.Message)" -ForegroundColor Red Write-Host "Certificate upload/apply failed: $($_.Exception.Message)" -ForegroundColor Red
$global:helpme = $_.Exception.Message $global:helpme = $_.Exception.Message
@@ -150,7 +162,7 @@ if ($certSuccess) {
} }
# ---------------------------- # ----------------------------
# Automatic vpxd restart via REST with retries, fallback to SSH # Automatic vpxd restart via REST with retries
# ---------------------------- # ----------------------------
$maxRetries = 20 $maxRetries = 20
$retryCount = 0 $retryCount = 0
@@ -158,14 +170,16 @@ $restartSucceeded = $false
while ($retryCount -lt $maxRetries -and -not $restartSucceeded) { while ($retryCount -lt $maxRetries -and -not $restartSucceeded) {
try { try {
# Test if REST endpoint is available
$healthUri = "https://$VCENTERHOST/rest/appliance/health/system" $healthUri = "https://$VCENTERHOST/rest/appliance/health/system"
Write-Host "Checking vCenter REST health endpoint..." -ForegroundColor Cyan Write-Host "Checking vCenter REST health endpoint..." -ForegroundColor Cyan
$resp = Invoke-RestMethod -Uri $healthUri -Method Get -SkipCertificateCheck -ErrorAction Stop $resp = Invoke-RestMethod -Uri $healthUri -Method Get -SkipCertificateCheck -ErrorAction Stop
# Restart vpxd service
$restartUri = "https://$VCENTERHOST/rest/appliance/system/services/vpxd?action=restart" $restartUri = "https://$VCENTERHOST/rest/appliance/system/services/vpxd?action=restart"
Write-Host "Requesting vpxd service restart via REST..." -ForegroundColor Cyan Write-Host "Requesting vpxd service restart via REST..." -ForegroundColor Cyan
Invoke-RestMethod -Uri $restartUri -Method Post -SkipCertificateCheck -ErrorAction Stop Invoke-RestMethod -Uri $restartUri -Method Post -SkipCertificateCheck -ErrorAction Stop
Write-Host "vpxd service restart requested successfully via REST." -ForegroundColor Green Write-Host "vpxd service restart requested successfully." -ForegroundColor Green
$restartSucceeded = $true $restartSucceeded = $true
} catch { } catch {
Write-Host "vpxd REST endpoint not ready yet, retrying in 15 seconds... (Attempt $($retryCount+1)/$maxRetries)" -ForegroundColor Yellow Write-Host "vpxd REST endpoint not ready yet, retrying in 15 seconds... (Attempt $($retryCount+1)/$maxRetries)" -ForegroundColor Yellow
@@ -175,18 +189,9 @@ while ($retryCount -lt $maxRetries -and -not $restartSucceeded) {
} }
if (-not $restartSucceeded) { if (-not $restartSucceeded) {
Write-Host "REST endpoint failed after $maxRetries attempts, falling back to SSH restart..." -ForegroundColor Yellow Write-Host "Automatic vpxd restart failed after $maxRetries attempts." -ForegroundColor Red
try { Write-Host "Please restart manually via SSH:" -ForegroundColor Red
Write-Host "Restarting vpxd via SSH..." -ForegroundColor Cyan Write-Host "ssh root@$VCENTERHOST 'service-control --stop vpxd; service-control --start vpxd'" -ForegroundColor Red
$sshCommand = "service-control --stop vpxd; service-control --start vpxd"
ssh root@$VCENTERHOST $sshCommand
Write-Host "vpxd service restarted successfully via SSH." -ForegroundColor Green
$restartSucceeded = $true
} catch {
Write-Host "SSH fallback restart failed: $($_.Exception.Message)" -ForegroundColor Red
Write-Host "Please restart manually via SSH:" -ForegroundColor Red
Write-Host "ssh root@$VCENTERHOST 'service-control --stop vpxd; service-control --start vpxd'" -ForegroundColor Red
}
} }
# ---------------------------- # ----------------------------