Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Boto | 6,469 | 22,943 | 447 | a year ago | 121 | July 11, 2018 | 1,156 | other | Python | |
For the latest version of boto, see https://github.com/boto/boto3 -- Python interface to Amazon Web Services | ||||||||||
Terraform Aws Vpc | 2,727 | 9 days ago | 16 | apache-2.0 | HCL | |||||
Terraform module which creates VPC resources on AWS 🇺🇦 | ||||||||||
Aws Saa C02 Study Guide | 1,340 | 25 days ago | 10 | |||||||
How to become a certified AWS Solutions Architect | ||||||||||
Eks Distro | 1,280 | 5 days ago | 21 | apache-2.0 | Shell | |||||
Amazon EKS Distro (EKS-D) is a Kubernetes distribution based on and used by Amazon Elastic Kubernetes Service (EKS) to create reliable and secure Kubernetes clusters. | ||||||||||
Aws | 921 | 2 months ago | 6 | apache-2.0 | Shell | |||||
A collection of bash shell scripts for automating various tasks with Amazon Web Services using the AWS CLI and jq. | ||||||||||
Awscala | 742 | 11 | 4 months ago | 9 | February 13, 2021 | 71 | other | Scala | ||
Using AWS SDK on the Scala REPL | ||||||||||
Laravel Aws Eb | 418 | a year ago | 17 | Shell | ||||||
Ready-to-deploy configuration to run Laravel on AWS Elastic Beanstalk. | ||||||||||
Eb_deployer | 399 | 29 | 2 | 4 years ago | 74 | April 18, 2018 | 24 | mit | Ruby | |
AWS Elastic Beanstalk blue-green deployment automation from ThoughtWorks Mingle Team | ||||||||||
Aws Service Catalog Reference Architectures | 396 | 4 months ago | 15 | apache-2.0 | JavaScript | |||||
Sample CloudFormation templates and architecture for AWS Service Catalog | ||||||||||
Laravel Aws Worker | 311 | 19 | 4 | 3 months ago | 37 | November 27, 2022 | 14 | mit | PHP | |
Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk workers |
AWS has recently made changes to their EB ENV variables that are catastrophic for much of the rails deployment approaches for EB. This includes whenever-elasticbeanstalk. We are investigating how we can address these issues. Please see Issue 18 for further details. Will update when a resolution is available.
Whenever-elasticbeanstalk is an extension gem to Whenever that automatically ensures that one instance in an AWS Elastic Beanstalk environment is set as leader. This allows you to run cron jobs on all instances, or just on the leader. This is required since Elastic Beanstalk may start or stop any instance as it scales up or down.
Add this line to your application's Gemfile:
gem 'whenever-elasticbeanstalk'
And then execute:
$ bundle
Or install it yourself as:
$ gem install whenever-elasticbeanstalk
$ cd /apps/my-great-project
$ wheneverize-eb .
This will create an initial config/schedule.rb
file for you with the ensure_leader
job set to run every minute. It will also create a .ebextensions/cron.config
file that will automatically choose a leader on environment initialization, and start up Whenever with the correct leader
role. Lastly, it creates the config/whenever-elasticbeanstalk.yml
file that will contain your AWS credentials for retrieving your environment information.
If you are already using Whenever, running wheneverize-eb .
won't overwrite your config/schedule.rb
file. You'll need to add the following lines in order for your environment to always have one leader.
every 1.minute do
command "cd /var/app/current && bundle exec ensure_one_cron_leader"
end
In order for the scripts to work, you need to ensure that the EC2 Instance Role has access to EC2 instances and tags (further reading at AWS Documentation ). Ensure that your EC2 instance has at a minimum the following permissions:
Example policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:DescribeInstanceAttribute",
"ec2:DescribeInstanceStatus",
"ec2:DescribeInstances",
"ec2:DescribeTags",
"ec2:CreateTags"
],
"Resource": [
"*"
],
"Effect": "Allow"
}
]
}
Make sure to add the RACK_ENV
environment variable to your environment if you haven't already done so. This variable is not created automatically by AWS. You can add the following line to your .elasticbeanstalk/optionsettings.appname-env
file:
RACK_ENV=staging
For config/schedule.rb
usage, please see the documentation for the Whenever gem.
To run a task only on one instance, assign the task to the leader
role.
every :day, :at => "12:30am", :roles => [:leader] do
runner "MyModel.task_to_run_nightly_only_on_one_instance"
end
To run a task on all instance, omit the roles
option.
every 1.minute do
command "touch $EB_CONFIG_APP_SUPPORT/.cron_check"
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)