Execute command after deploy AWS Beanstalk

前端 未结 3 1724
无人共我
无人共我 2020-12-19 00:30

I have problem with execute command after deploy, i have some node.js project and script, this script use some bin from node_modules, if i write my command for script in .eb

相关标签:
3条回答
  • 2020-12-19 01:00

    If you read the AWS ebextensions documentation they mention the execution, specifically where they mention that all commands are executed before the application version is deployed.

    "You can use the container_commands key to execute commands for your container. The commands in container_commands are processed in alphabetical order by name. They run after the application and web server have been set up and the application version file has been extracted, but before the application version is deployed."

    If you deploy it for a second time it should work; this is because your application is already unpacked. This however is not a working solution because every new instance that is spawned will error.

    0 讨论(0)
  • 2020-12-19 01:04

    I found the following solution

    I add to beanstalk config next command:

    commands:
      create_post_dir:
        command: "mkdir /opt/elasticbeanstalk/hooks/appdeploy/post"
        ignoreErrors: true
    files:
      "/opt/elasticbeanstalk/hooks/appdeploy/post/some_job.sh":
        mode: "000755"
        owner: root
        group: root
        content: |
          #!/usr/bin/env bash
          cd /var/app/current
          export PATH=$PATH:$(ls -td /opt/elasticbeanstalk/node-install/node-* | head -1)/bin
          npm run some_script
    

    This commands create(if not exist) folder for post-hooks scripts and adds bash script. Scripts in this folders execute only after npm install, this very important for my problem.

    Thanks to this guy http://junkheap.net/blog/2013/05/20/elastic-beanstalk-post-deployment-scripts/

    0 讨论(0)
  • 2020-12-19 01:04

    create a file called .ebextensions/post_actions.config:

    container_commands:
     <name of container_command>:
        command: "<command to run>"
    

    this will be executed after the code was extracted, but before it was launched.

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