chore(aws): add codedeploy notes

This commit is contained in:
Michele Cereda
2024-10-08 23:44:25 +02:00
parent f6e3979d19
commit 30d36a4842
2 changed files with 169 additions and 0 deletions

View File

@@ -41,6 +41,21 @@ aws autoscaling cancel-instance-refresh --auto-scaling-group-name 'ProductionSer
aws autoscaling rollback-instance-refresh --auto-scaling-group-name 'ProductionServers'
###
# CodeDeploy
# ------------------
###
aws deploy list-applications
aws deploy list-deployment-groups --application-name 'Evidently'
aws deploy get-deployment-group --application-name 'Evidently' --deployment-group-name 'production' --output 'json' | pbcopy
diff -y -W 200 \
(aws deploy get-deployment-group --application-name 'Evidently' --deployment-group-name 'staging' --output json | psub) \
(aws deploy get-deployment-group --application-name 'Evidently' --deployment-group-name 'production' --output 'json' | psub)
###
# EC2
# ------------------