Menu
  • HOME
  • TAGS

Octopus Deploy: How to Deploy Different Projects to Different Production Machines

deployment,octopus-deploy,automated-deploy,automated-deployment

What I wanted to do can be achieved by using tags. You tag each machine in each environment differently and you can target those machines in the process steps. This allows you to keep sensibly named .config files.

Automating deployments of large distributed client server application part of CI / CD

jenkins,continuous-deployment,distributed-system,continuous-delivery,automated-deployment

I'd keep separate these 2 aspects: deployment on a large number of servers (it doesn't matter if the artifacts to deploy come from CI or not) hooking up such deployment into CI to perform CD For #1 - I'm sure there are profesional IT tools out there that could be...

Accessing local Nexus repository over https from eclipse

eclipse,maven,https,nexus,automated-deployment

Your Nexus is using an SSL certificate which is not considered to be valid by the Java running Eclipse. This is because the certificate in Nexus was not signed by a trusted root certificate authority such as Verisign. You'll need to install the public certificate in Nexus into the Java...

E-mailing selected Range in Excel/Outlook

excel,vba,excel-vba,outlook-vba,automated-deployment

First off, you have not declared SendRange As a range. The line: Dim SendRange, rng As Range declares SendRange As a variant and rng As a range. change this to: Dim SendRange As Range, rng As Range Second, change the line: Set Sendrng = Worksheets("ValLog").Range("B5:K12").Select to: Set Sendrng = Worksheets("ValLog").Range("B5:K12")...