Last active
July 16, 2020 08:43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DXC-S deploy from source environment to target environment. Step one that deploys to a slot on target. | |
# Install the EpiCloud module | |
if (-not (Get-Module -Name EpiCloud -ListAvailable)) { | |
Install-Module EpiCloud -Scope CurrentUser -Force | |
Write-Output "Installed EpiCloud module" | |
} | |
Connect-EpiCloud -ClientKey $OctopusParameters["DXC-S API Key"] -ClientSecret $OctopusParameters["DXC-S API Secret"] | |
# Check if there is an ongoing deployment | |
$deployments = Get-EpiDeployment -ProjectId $OctopusParameters["DXC-S Project Id"] | |
$ongoingdeployid = 0 | |
Foreach ($deployment in $deployments) { | |
if ($deployment.parameters.targetEnvironment -eq $OctopusParameters["DXC-S Target environment"] ) { | |
if ($deployment.status -eq 'AwaitingVerification' -Or $deployment.status -eq 'InProgress' ) { | |
$ongoingdeployid = $deployment.id | |
Write-Host $deployment | |
break | |
} | |
} | |
} | |
if ($ongoingdeployid -eq 0) { | |
$deployment = Start-EpiDeployment -ProjectId $OctopusParameters["DXC-S Project Id"] -SourceEnvironment $OctopusParameters["DXC-S Source environment"] -TargetEnvironment $OctopusParameters["DXC-S Target environment"] -SourceApp cms -Wait | |
} | |
else { | |
Write-Warning "There already is an ongoing deployment ($ongoingdeployid), skipping this step." | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment