Skip to content

Commit b4cd060

Browse files
authored
Merge pull request #1496 from OctopusDeploy/mh/az-app-step
Updates to Library deployment to use new azure app service step
2 parents a5818eb + 9998542 commit b4cd060

File tree

2 files changed

+9
-53
lines changed

2 files changed

+9
-53
lines changed

.octopus/deployment_process.ocl

+8-52
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ step "notify-octopus-library-on-slack" {
44

55
action "notify-octopus-library-on-slack-1" {
66
properties = {
7-
Octopus.Action.RunOnServer = "true"
87
Octopus.Action.Template.Id = "ActionTemplates-404"
98
Octopus.Action.Template.Version = "12"
109
OctopusUseBundledTooling = "False"
@@ -33,37 +32,13 @@ step "notify-octopus-library-on-slack" {
3332
}
3433

3534
step "clear-staging-slot" {
36-
condition = "Always"
3735
name = "Clear Staging slot"
3836
start_trigger = "StartWithPrevious"
3937

40-
action "clear-staging-slot-1" {
41-
action_type = "Octopus.AzurePowerShell"
42-
is_disabled = true
43-
properties = {
44-
Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
45-
Octopus.Action.RunOnServer = "false"
46-
Octopus.Action.Script.ScriptBody = <<-EOT
47-
#Remove the staging slot if it exists
48-
Remove-AzureRmWebAppSlot -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName} -Slot Staging -Force
49-
50-
#Create the staging slot
51-
New-AzureRmWebAppSlot -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName} -Slot Staging
52-
EOT
53-
Octopus.Action.Script.ScriptSource = "Inline"
54-
Octopus.Action.Script.Syntax = "PowerShell"
55-
}
56-
}
57-
}
58-
59-
step "clear-staging-slot-az" {
60-
name = "Clear Staging slot - az"
61-
6238
action {
6339
action_type = "Octopus.AzurePowerShell"
6440
properties = {
6541
Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
66-
Octopus.Action.RunOnServer = "true"
6742
Octopus.Action.Script.ScriptBody = <<-EOT
6843
#Remove the staging slot if it exists
6944
Remove-AzWebAppSlot -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName} -Slot Staging -Force
@@ -93,6 +68,7 @@ step "deploy-octopus-library" {
9368

9469
action "deploy-octopus-library-1" {
9570
action_type = "Octopus.AzureWebApp"
71+
is_disabled = true
9672
properties = {
9773
Octopus.Action.Azure.DeploymentSlot = "#{AzureSlotName}"
9874
Octopus.Action.Azure.PreserveAppData = "True"
@@ -102,7 +78,6 @@ step "deploy-octopus-library" {
10278
Octopus.Action.Package.DownloadOnTentacle = "False"
10379
Octopus.Action.Package.FeedId = "octopus-server-built-in"
10480
Octopus.Action.Package.PackageId = "Octopus.Library"
105-
Octopus.Action.RunOnServer = "true"
10681
Octopus.Action.SubstituteInFiles.TargetFiles = "views\\index.pug"
10782
OctopusUseBundledTooling = "False"
10883
}
@@ -132,18 +107,22 @@ step "deploy-octopus-library-new-app-service-step" {
132107

133108
action "deploy-octopus-library-new-app-service-step-1" {
134109
action_type = "Octopus.AzureAppService"
135-
is_disabled = true
136110
properties = {
137111
Octopus.Action.Azure.DeploymentSlot = "#{AzureSlotName}"
138112
Octopus.Action.Azure.DeploymentType = "Package"
139113
Octopus.Action.EnabledFeatures = "Octopus.Features.JsonConfigurationVariables,Octopus.Features.ConfigurationTransforms,Octopus.Features.SubstituteInFiles"
140114
Octopus.Action.Package.DownloadOnTentacle = "False"
141115
Octopus.Action.Package.FeedId = "octopus-server-built-in"
142116
Octopus.Action.Package.PackageId = "Octopus.Library"
143-
Octopus.Action.RunOnServer = "false"
144117
Octopus.Action.SubstituteInFiles.TargetFiles = "views\\index.pug"
118+
OctopusUseBundledTooling = "False"
119+
}
120+
worker_pool = "hosted-windows"
121+
122+
container {
123+
feed = "registered-dockerhub"
124+
image = "octopusdeploy/worker-tools:windows.ltsc2022"
145125
}
146-
worker_pool_variable = ""
147126

148127
packages {
149128
acquisition_location = "Server"
@@ -161,7 +140,6 @@ step "http-invoke-url" {
161140

162141
action "http-invoke-url-1" {
163142
properties = {
164-
Octopus.Action.RunOnServer = "true"
165143
Octopus.Action.Template.Id = "ActionTemplates-102"
166144
Octopus.Action.Template.Version = "2"
167145
OctopusUseBundledTooling = "False"
@@ -181,7 +159,6 @@ step "notify-octopus-library-of-manual-intervention" {
181159

182160
action "notify-octopus-library-of-manual-intervention-1" {
183161
properties = {
184-
Octopus.Action.RunOnServer = "true"
185162
Octopus.Action.Template.Id = "ActionTemplates-404"
186163
Octopus.Action.Template.Version = "12"
187164
OctopusUseBundledTooling = "False"
@@ -239,27 +216,10 @@ step "confirm-changes-on-staging-slot" {
239216
step "swap-staging-slot-to-production" {
240217
name = "Swap Staging slot to Production"
241218

242-
action "swap-staging-slot-to-production-1" {
243-
action_type = "Octopus.AzurePowerShell"
244-
is_disabled = true
245-
properties = {
246-
Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
247-
Octopus.Action.RunOnServer = "false"
248-
Octopus.Action.Script.ScriptBody = "Switch-AzureRmWebAppSlot -SourceSlotName Staging -DestinationSlotName Production -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName}"
249-
Octopus.Action.Script.ScriptSource = "Inline"
250-
Octopus.Action.Script.Syntax = "PowerShell"
251-
}
252-
}
253-
}
254-
255-
step "swap-staging-slot-to-production-az" {
256-
name = "Swap Staging slot to Production - az"
257-
258219
action {
259220
action_type = "Octopus.AzurePowerShell"
260221
properties = {
261222
Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
262-
Octopus.Action.RunOnServer = "true"
263223
Octopus.Action.Script.ScriptBody = "Switch-AzWebAppSlot -SourceSlotName Staging -DestinationSlotName Production -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName}"
264224
Octopus.Action.Script.ScriptSource = "Inline"
265225
Octopus.Action.Script.Syntax = "PowerShell"
@@ -280,7 +240,6 @@ step "http-invoke-url-production" {
280240

281241
action "http-invoke-url-production-1" {
282242
properties = {
283-
Octopus.Action.RunOnServer = "true"
284243
Octopus.Action.Template.Id = "ActionTemplates-102"
285244
Octopus.Action.Template.Version = "2"
286245
OctopusUseBundledTooling = "False"
@@ -305,7 +264,6 @@ step "github-create-release" {
305264
gitHubApiKey = "#{GitHubApiKey}"
306265
gitHubRepository = "#{GitHubRepository}"
307266
gitHubUsername = "#{GitHubOwner}"
308-
Octopus.Action.RunOnServer = "true"
309267
Octopus.Action.Template.Id = "ActionTemplates-61"
310268
Octopus.Action.Template.Version = "4"
311269
OctopusUseBundledTooling = "False"
@@ -329,7 +287,6 @@ step "github-clean-vnext-milestone" {
329287
action "github-clean-vnext-milestone-1" {
330288
action_type = "Octopus.Script"
331289
properties = {
332-
Octopus.Action.RunOnServer = "true"
333290
Octopus.Action.Script.ScriptBody = <<-EOT
334291
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
335292

@@ -399,7 +356,6 @@ step "notify-octopus-library-of-deployment-result" {
399356

400357
action "notify-octopus-library-of-deployment-result-1" {
401358
properties = {
402-
Octopus.Action.RunOnServer = "true"
403359
Octopus.Action.Template.Id = "ActionTemplates-404"
404360
Octopus.Action.Template.Version = "12"
405361
OctopusUseBundledTooling = "False"

.octopus/schema_version.ocl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = 6
1+
version = 7

0 commit comments

Comments
 (0)