Using redeployment hooks
Overview
Redeployment hooks allow you to achieve continuous deployment by deploying your application whenever you push a change to your Git repository or when your continuous integration pipeline builds successfully.
Cloud 66 offers several methods for achieving continuous integration. Please read our continuous integration guide to compare and select the ideal method to suit your requirements.
Accessing redeployment hooks
A unique redeployment hook URL is automatically generated for each Cloud 66 application. To access it:
- Open the application from your Dashboard
- Click on ⚙️ Settings in the left-hand nav
- Click on Deployment in the sub nav
- Copy the hook URL from the Redeployment Hook row
You can use the Redeployment Hook URL to trigger automated deployments via your preferred Git or CI service.
Usage example
An example of a standard redeployment hook:
The xxxx/yyyy in the examples is for illustrative purposes only and should be replaced with your redeployment URL on your Application Information page.
In the case where the payload of the commit hook does not contain any branch information (Github and Bitbucket payload formats are supported) then the application will redeploy without attempting to match branch.
Calling a deployment profile via a redeployment hook
Deployment profiles allow you to customise the deployment process depending on your requirements - for example deploying some components and not others. You can also call deployment profiles directly via redeployment hooks using the following syntax:
The name of the profile can be found via your app Dashboard under ⚙️ Settings → Build & Deployment Profiles. If your deployment profile's name has spaces in it, you should replace each space with either +
or %20
.
Github integration
Users who have signed in through Github (and who have enough access to create and edit deployment events for their applications on GitHub) can activate continuous deployments on GitHub.
To do this: access your Application settings via the toolbelt and set continuous.deploy to true.
This will create a new webhook for your repository on GitHub or simply modify an existing one to let Cloud 66 receive deployment events as well.
If you edit your webhooks manually on Github, they must be configured to be triggered by both Push and Deployment events in order for continuous deployment to work.
With this feature enabled, whenever you push a new commit, Cloud 66 will automatically generate a new deployment event based on receiving the push event from GitHub. We will also send deployment status events on different deployment statuses, such as started, canceled, succeeded and failed.
The deployment event will be created with the same environment as your application.
Adding redeployment hooks to your pipeline
The process of adding the hook differs by Git host, so we will guide you through doing this with GitHub, Bitbucket and a generic solution.
GitHub Setup
On your application, click Settings in the right sidebar and then the Information tab. Then copy the URL provided in the Redeployment hook field.
Next, visit your GitHub repository, click Settings in the right sidebar, and then Webhooks & Services in the left sidebar.
In the Webhooks window, click Add webhook and paste the redeployment hook URL into the Payload URL field. When you confirm by clicking Add webhook, GitHub will automatically test your hook with a Ping and you should get a green HTTP200 response.
Bitbucket Setup
On your application, click Settings in the right sidebar and then the Information tab. Then copy the URL provided in the Redeployment hook field.
Next, visit your Bitbucket repository, click Settings in the left sidebar, and then Hooks in the settings menu that appears. In the Select a hook field, select a POST hook, click Add hook and paste your redeployment hook URL into the field provided. Click Save to confirm.
Generic Setup
Most Git providers have a commit hook mechanism that you can use to post to the Cloud 66 redeployment hook URL. Please check your Git provider documentation for this information. If your Git provider has a non-conforming payload format (not compatible with Github or BitBucket formats) then please get in touch and we can extend our payload support!
Invoking your redeployment hook manually
To invoke the redeployment hook manually, you can POST an HTTP request to your redeployment hook URL. You can do this in curl like this:
You can also use your redeployment hook to deploy a specific git ref/SHA as with the following example:
If you are manually invoking redeployments you should consider using Cloud 66 Toolbelt instead, as it has additional features!