Octopus and Continuous Integration - What's the best practice around when a release should be created?

亡梦爱人 提交于 2019-12-04 08:46:03

问题


On a current project we are using Teamcity and Octopus for building and deploying our IIS app.

We have 4 environments. The CI Environment (automated build on checkin, runs unit tests, and automated QA tests), and the QA, UAT, and Prod Environments (which we push to manually using Octopus).

On local (dev) builds, the default build script pushes directly to a local Octopus instance for testing purposes.

Would it be better practice to have the CI build (which runs quite frequently) to follow a similar model as the local build (and push directly to a Tentacle instance, instead of through the master), or go through the Octopus server (requiring the creation of a new release every single time a build is made).


回答1:


Your questions seem related but I don't think they are so I'll break this answer up into two pieces.

PART ONE

I'd say, depending on the size of your packages and the amount of time for each build (including automated unit/qa tests), you have two options:

  1. Do continuous deployments for each build and automate each build to deploy using the Octo.exe.
  2. Do nightly builds at a given time like say, 7p or 8p per your local time again using Octo.exe.

I'd argue at a minimum deploying to your CI and QA environment. It only makes sense that the testers will test the latest deployment.

The reason I mention package size is because if you're doing 15-20 builds a day and generating 50MB+ packages with all the unit tests, you may end up queuing builds if you're not careful. Timeliness is a factor. If each check-in takes 20 minutes to build, nuget pack, push and deploy, that might be alright. But 20 minutes x N # of check-ins a day and you might be queuing builds by the middle of the day. Not to mention storage may (slowly) become an issue (or lack of storage). I don't know all the details about your project but just keep these factors in mind.

No matter what you want to do, you'll have to use the Octo.exe. If you want to do #1 (continuous deployment) you could write a simple Powershell script to execute the Octo.exe command AFTER the build steps and package is pushed to the nuget server of your choice. For the command, you'll just tell Octopus to get the latest package.

If you want to do the nightly build option, you'd do the same thing (script-wise) except instead of changing TeamCity to run another script, you'd schedule a task on your Windows server to run that script at a certain time. This would be the most prudent option, but it's not difficult to switch from this to the continuous deployment option.

PART TWO

As far as fetching the packages directly from the server or directly from the NuGet server, it should not matter. I would take a few things in mind that would guide you in picking one over the other.

  • Take your package size into consideration - the larger the package, I'd argue going to direct to the nuget server is preferable only out of concern for the Octopus IO load. Odds are, this won't be a big deal.

  • Number of servers per environment - especially if you have multiple servers in each environment. By default Octopus tries to do parallel deployments but you can switch to "rolling" deployments (setting a specific # of servers to be deployed to at a time). If you're doing continuous deployments for EVERY check-in, each tentacle will have to download the latest package. Again, depending on package size and number of tentacles to push to, you may run into some bandwidth issues. Again, I don't know how many servers you have in your environments so you really know what's best.

  • Are there any other teams using the Octopus Server? I ask only because if you're the only team then you really don't have to worry how each tentacle gets the package. Direct from the nuget server vs. the Octopus server really won't matter.

Here's the URL to the Octo.exe documentation: http://docs.octopusdeploy.com/pages/viewpage.action?pageId=360596 It's your best friend for fully automating your builds to whatever environments you want.

No matter what you choose, I'd highly recommend automating your deployments. Period. After you've automated it, you'll wonder why you bothered with manual deployments. Keep in mind, the octo.exe does not need to run on the octopus server itself!

The Octo.exe uses the Octopus API and communicates with said API for everything. So you can test out the Octo.exe command from any machine that can access your Octopus Server. It's best to try it out on your desktop and once you get it just right, then put it into a script and test it.


So to clarify to the OPs point of "when" a release needs to be created, it's highly subjective and since projects within Octopus can deploy one or more NuGet packages it's going to vary on a case by case basis. That said, I think there needs to be some acknowledgement of versioning your releases which inevitably brings your versioning of your binaries and Nuget packages into the arena as well.

Example: If your testers heavily rely on TFS changeset numbers then it's best have that changeset number embedded in your binaries (via AssemblyVersionInfo) and have your NuGet packages reflect that version (in your NuSpec) and then have Octopus use NuGet package versioning for your releases. Sweet. Your release versions can show your changeset number! Awesome. Well except when your project is deploying more than one NuGet package. So which package acts as the version for the entire deployment? Things get pretty sticky when you have more than one NuGet package per project and deployment process. That's why the other versioning mechanism in Octopus (aka variable template) works typically best for everyone.

Keep in mind the concept behind promotion within Octopus is also an important feature - especially if you're addressing best practices. It's best to promote a release between environments not only for consistency in the deployment process, NuGet package versions and variable values, but the version number (whether NuGet or variable template) being consistent across your environments. It's visually much easier to see release 1.0.2 across all environments and release that 1.0.2 has been thoroughly tested, rather than creating a new release for EACH deployment - which would look something like this: 1.0.1, 1.0.2, 1.0.3, 1.0.4, etc. especially when the code is the all the same. Promotions allow you to (effectively) redeploy a release to another environment with all the same NuGet package versions, variable settings and deployment process - all within the same release version. As a shameless self-plug, here's my blog post on this issue of versioning.

Are there best practices on "when" to create a release? I'd say for any code change, a new release is necessary. You don't need to create a new release for moving the same code to a different environment. But if you're concerned with releases, you should also be concerned with versioning as well.

To summarize (TL;DR):

  • Octopus Deploy release best practices are bound to NuGet, NuGet versioning and release versioning. The version number of your release matters from a relative code perspective. Which type of release version you choose (nuget or variable template), just realize that everything can and probably should be linked - depending on your project's needs.
  • Always promote a release to another environment - don't create a new release for the same code deployed in another environment. It's confusing to determine what code is in which environment and that's why the promotion button exists.
  • If you have one NuGet package in your deployment process - you can rely on NuGet package versioning for your releases. More than one, switch to variable template versioning.

This is all I can think of off the top of my head at the moment. Hope this clarifies things.




回答2:


THIS IS MY BEST PRACTICE - Have a nice day :-)

First of all Create an AutoDeploy user @OctopusDeploy. Generate an API key and keep it. We use it for connection to OctopusDeploy from your build application server.

Open your pilot choosen Octopus project's processes tab. Edit your existing nuget package deployment step. Change project's nuget feed to "Octopus Server (built-in)" Disable any automatic release and deployment triggers on Octopus.

Add octopack to your solution file, which your working csproj.

Add a nuspec file to your solution's csproj file. It must be same named with the csproj.

Nuspec files section could like this. Don't forget the package ID in nuspec file..

  <files>
    <file src="obj\**\*.*" exclude="obj\octopacking\**\*.*;obj\octopacked\**\*.*;obj\Release\Package\**\*.*;**\*.pdb;**\*.ps1;**\*.dll.config;**\*.loadtest;_DeveloperNotes;_PublishedWebsites" target="obj"/>
    <file src="Deploy.ps1" />
  </files>

Also add a deploy.cmd(msdeploy) and deploy.ps1 (custom script) files to your csproj.

Deploy.ps1 could like the following

[string[]]$params = @(
            "-setParam:name='IIS Web Application Name',value='" + $iisapplicationname + "'",
            "-skip:Directory=^" + $iisapplicationname + "\\App_Data",           
            "-skip:File=.config$",
            "-skip:File=.cmd$",
            "-skip:File=.ps1$"

            )
$msdeployArgs = [string]::join(' ', $params)

if ($OctopusEnvironmentName -ceq 'Development')
{

    .\obj\Release\Myproject.Deploy.cmd /Y /M:localhost ($msdeployArgs) | Write-Output
}
else
{
    .\obj\Release\Myproject.Deploy.cmd /Y /M:localhost ($msdeployArgs) | Write-Output
}

Add "iisapplicationname" to your OctopusDeploy project and set the value for your each environments.

The files which we have added to sln, open properties for each file. Change the properties like this.. Copy to output directory DO NOT COPY, Build Action NONE.

You will need a Build server like Jenkins.

Add plugins to your build server, which you must use for your project building and packaging operations. (Git, TFS, Change Assembly version plugin, Msbuild, Nunit, Version number plugin )

Add a folder your build server like "C:\Scripts". And copy the Octo.exe, nuget.exe, nuget.config files this location. Later, you should add custom batch(.bat) files to this location.

Create an empty project for your X project and add your development code repository which build your branch.(you should name your development branch "develop") You must set the credentials for your repository connection.

Trigger the job and check you are sure downloading the correct branch code to the build server workspace.

Edit the same project and add an "Execute windows batch command" step to your build project. Add the following commands for nuget package restore on your build server.

"C:\Scripts\NuGet.exe" restore "%WORKSPACE%\Myproject.sln"

Trigger the job and check the package restore is working on build task console.

Edit the same project. Add "Build a Vİsual Studio Project or solution using MSbuild" Ensure the latest MSbuild version has already installed on the build server. MSbuild file name:

$WORKSPACE\Myproject.sln

Command line arguments:

/t:Rebuild /p:AutoParameterizationWebConfigConnectionStrings=False /p:DebugSymbols=false /p:DebugType=None /p:IsAutoBuild=True /p:CreatePackageOnPublish=true /p:Configuration=Release;DeployOnBuild=True;PackageLocation=".\obj\Release\Myproject.zip";PackageAsSingleFile=True /p:RunOctoPack=true /p:OctoPackPackageVersion=%VERSION%-dev /p:OctoPackPublishPackageToHttp=http://octopus.yourdomain.com/nuget/packages /p:OctoPackPublishApiKey=API-xxxxxxxxxxxxx

Add a "Execute windows batch command" to your development build & deployment project. And write the followig batch file with parameters.

call "C:\Scripts\JenkinsciDeploy.bat" Myproject %VERSION%-dev OctopusProjectName Development %BUILD_NUMBER% %JOB_NAME%

Copy the following file as this location "C:\Scripts"

cd C:\Scripts

Octo.exe create-release --project %3 --version %2 --packageversion %2 --server http://octopus.yourdomain.com --apiKey API-xxxxxxxxxxx --deployto %4 --progress --force --guidedfailure=False --waitfordeployment --deploymenttimeout=00:30:00 --releaseNotes "Jenkins build [%5] http://jenkins.yourdomain.com:8080/job/%6/%5"

Modify your Jenkins project. Check "Create a formatted version number" option. Environment Variable Name must be named as "VERSION". Version Number Format String should be "${BUILD_YEAR}.${BUILD_MONTH}.${BUILD_DAY}.${BUILDS_TODAY}"

Add your Jenkins project a "Change assembly Version" step. Assembly version must be named like "$VERSION"

Use Poll CSM for building the jenkins project for each check-in. On your code repository, Hook must be enabled for the Project. Or you should scheduled build/deployment settings.

Add a post build step "Email Notification"

Finally you should see results.

You should clone this Build job for different branches and different environments. Change the versioning formatting from "%VERSION%-dev" to "%VERSION%" or "%VERSION%-hotfix" Change the branch from "/develop" to "/master" "*/hotfix"

Change the deployment target environment in the "JenkinsciDeploy.bat" batch parameters.

You should use this for any web applications which will be deployed..



来源:https://stackoverflow.com/questions/22902891/octopus-and-continuous-integration-whats-the-best-practice-around-when-a-rele

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!