Can I automate an application deployment via webhook to OpsWorks?

后端 未结 3 1339
清酒与你
清酒与你 2021-02-05 13:53

I want to set up an webhook from our Github account so it automatically starts an deployment task in OpsWorks. It seems to be possible according to the documentation - but can\'

相关标签:
3条回答
  • 2021-02-05 14:24

    This process is much simpler now. All you have to do is provide the required values per the Webhook, and it will be done for you. opsworks webhook details

    Steps :

    1. GitHub repository -> Settings
    2. Webhooks & Services
    3. AWS Opsworks
    4. Provide AWS::IAM keys, Stack and App ID , and branch you want to deploy.

    Be aware that by this process you deploy a specific app to ALL the layers in a stack. This means that if you have custom layers with ruby, they will also deploy the specific app to those layers too. Useful for worker layer, however, increased deployment time when you have multiple rails apps in different layers.

    Ensure that your user has proper permissions to deploy on the specific stack. enter image description here

    0 讨论(0)
  • 2021-02-05 14:28

    Small addition to Imran answer: now on github it called Integration & Services.

    0 讨论(0)
  • 2021-02-05 14:35

    Internets saved me once again: http://blog.codeship.io/2013/09/18/how-to-deploy-to-amazon-opsworks-using-codeship.html

    0 讨论(0)
提交回复
热议问题