:HIPSTER_DEV_BLOG

Another Octopress blog about programming and infrastructure.

Part 3: Integrating OpsWorks and CodeDeploy

This is part 3 of integrating OpsWorks and CodeDeploy.

This section covers creating the CodeDeploy deployment, deploying it to the configured OpsWorks stack and demonstrating the results of the integration. Click here for Part 1.

Setting bucket policy and uploading deployment package

Now we’re ready to deploy a package from CodeDeploy.

For the purposes of this example the package will contain two files:

File Structure
1
2
appspec.yml
app/index.php

The AppSpec specifies that the contents of the App directory should be copied to the location of the placeholder OpsWorks deployment.

appspec.yml
1
2
3
4
5
version: 0.0
os: linux
files:
   - source: app
     destination: /srv/www/my_app/public
app/index.php
1
<h1>Hello from CodeDeploy</h1>

Zip this up and upload it to your S3 bucket where you’ll store your deployment packages.

If you haven’t already done so, you will also need to apply the S3 bucket policy provided here to allow the CodeDeploy role access to objects in this bucket:

One important note is that you must also include the role ARN for your OpsWorks instances as above.

You can find the stack profile in the security settings of the layer:

Then get the role ARN from your IAM console:

Running CodeDeploy deployment

We’re now ready to deploy our application with CodeDeploy, head back to the CodeDeploy application you created earlier and create a new deployment from the zip you uploaded.

Click “Deploy Now” and wait for the deployment to conclude.

Should your deployment fail, click “View All Instances” > “View Events” beside an instance and click “View Logs” beside the failed step.

Viewing your application

Your application should now successfully be deployed to your OpsWorks instances. If you view the application in your browser you should see your deployment.

Caveats - Launching a new instance

Unfortunately it seems CodeDeploy currently only supports automatic deployments for new instances when they’re in an autoscaling group. OpsWorks only supports its own load and time based instance functionality rather than using autoscaling groups, and therefore you’ll have to manually trigger a deployment after a new instance comes online and before you place it under your load-balancer. You may wish for your recipes to cause the load-balancer health check to fail by default, then have a separate recipe which enables the health check to pass which you can run manually once you’ve run a deployment after a new instance has been launched.

Alternatively you could use your configure recipe to trigger a deployment automatically using the CodeDeploy API, however you would need to know which specific applications are relevant to the instance.

Integrating OpsWorks and CodeDeploy

  • Part 1 - Introduction and getting started.
  • Part 2 - OpsWorks configuration and recipes.
  • Part 3 - Deployment and results.

Comments