aws-codedeploy-agent
aws-codedeploy-agent copied to clipboard
Host Agent for AWS CodeDeploy
This PR amends the log format so that the deployment ID and the lifecycle event are added to every line. This makes logfile aggregation/processing much easier, since it is no...
I am using log collection/processing software to monitor the CodeDeploy agent logs and spot errors during the deployment process. Sometimes it is hard to tell if a particular Lifecycle Event...
aws-codedeploy-agent is not compatible with `aws-sdk-core 3.126.2`. The [gemspec file specifies `'~> 3'` ](https://github.com/aws/aws-codedeploy-agent/blob/3c39d545b108c29ae46dfe17aa98e518f88f1a14/codedeploy_agent.gemspec#L19) After pinning the dependency to `3.114.0`, the error disappeared. Stack trace: ``` $ rake ... Failure:...
Hello team, We are facing an issue where CodeDeploy is unable to OVERWRITE symlinks during an in-place deployment. This is hapening since we use --file-exists-behavior "OVERWRITE" option in the deploy...
I am trying to install the agent on Ubuntu 16.04 LTS Like this: wget https://aws-codedeploy-us-west-2.s3.amazonaws.com/latest/install chmod +x ./install sudo ./install auto It fails to install. Looking at /tmp/codedeploy-agent.update.log I see...
If RVM is installed in the system-wide mode, with rvm.sh in the default /etc/profile.d/rvm.sh, the init scripts will not work properly due to [this line](https://github.com/aws/aws-codedeploy-agent/blob/eef9a73fa5dd715c4925fa9869e55204188177a6/init.d/codedeploy-agent#L22). Commenting it out seems to...
Move the After= configuration statement from the [Service] section to the [Unit] section where it belongs. The current code results in syslog messages like this: ``` 11/05/2021 5:35:48.546 AM +0000...
This is perhaps edge case but I was confused why this appspec directive (file_exists_behavior) was not being adhered to. It was because when initiating a deployment from the console even...
*Issue #, if available:* AWS Support Case ID 8624255101 *Description of changes:* To replace cmd command for deleting of a directory in Windows systems with Powershell command By submitting this...
I'm getting a weird 'unbound variable' problem when I try to run my AfterInstall script. This same script works fine in Amazon Linux1 under the same environment (Ruby / RVM)....