Hi,
I have a small (or maybe not-so-small) suggestion for improving the deployment process for websites that use a load balancer (e.g. ARR). Apologies in advance for the length of the “Long version” below…
Short version - Add a “Run On - Specified Role(s)” option in the Execution Plan for steps to allow them to be run on all servers in a specified role in the same environment as the current Deployment Target. E.g. for a “Remove from Load Balancer” step that targets servers in the “WEB” role (say, UATWEB01, UATWEB02, UATWEB03) you could specify that it “Run On” servers in the “LOADBALANCER” role in the same environment (say, UATLB01 and UATLB02). This would remove the need for calling a script using PowerShell remoting from the Octopus Server to target the LOADBALANCER servers.
Long version - I have an internal IIS website running in PROD on 3 webheads that are load balanced behind 2 servers running ARR, which are themselves load balanced on a virtual IP address via a hardware firewall. When I deploy to a webhead I want a step to gracefully take it out of load on the 2 ARR servers first, before deploying the API, and then re-adding the webhead to load on both ARR servers.
I’m currently doing this:
- Step 1 - [apply to WEB role, run on octopus server] - drain Deployment Target from load on LB Node 1
- Step 2 - [apply to WEB role, run on octopus server] - drain Deployment Target from load on LB Node 2
- Step 3 - [apply to WEB role, run on deployment target] - deploy website
- Step 4 - [apply to WEB role, run on octopus server] - re-add Deployment Target to load on LB Node 1
- Step 5 - [apply to WEB role, run on octopus server] - re-add Deployment Target to load on LB Node 2
where steps 1, 2, 4 and 5 use PowerShell Remoting from the Octopus Server to manage the ARR load balancers for each environment. It works fine, and it’s not a major pain to manage this, but we have different numbers of ARR servers in each environment (1 in DEV, 1 in TST, 2 in UAT, 2 in PRD) so we have to do some fiddling with environment filters in steps 2 and 4, and environment-scoped variables to make it run the right number of drains on the ARR right servers for each environment. And if we add another ARR sever to PROD I’d have to add another pair of “run on octopus server” steps for LB Node 3.
As an alternative, I was thinking it would be useful to be able to have the option to specify a different role in the “Run On” field. For example,
- Step 1 - [apply to WEB role, run on ARR role] - drain Deployment Target from load on all LB Nodes
- Step 2 - [apply to WEB role, run on deployment target] - deploy website
- Step 3 - [apply to WEB role, run on ARR role] - re-add Deployment Target to load on all LB Nodes
Ideally, the “RunOn Role” option would then run Step 1 once on each server in the ARR role, then run Step 2 on the Deployment Target to deploy the site, and finally run Step 3 once on each server in the ARR role to add it back to load. This would simplify managing the process and would automatically know how many WEB and ARR servers to execute the steps on in each environment based on the roles assigned to them.
Cheers,
Mike