-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscale-out
executable file
·46 lines (38 loc) · 1.35 KB
/
scale-out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env bash
set -e
CLOUDFORMATION_STACK_NAME=playground-PROD-cdk-playground
POLICY_ARN=$(
aws cloudformation describe-stacks \
--stack-name "$CLOUDFORMATION_STACK_NAME" \
--profile developerPlayground \
--region eu-west-1 \
--no-cli-pager | \
jq -r '.Stacks[].Outputs[] | select( [.OutputKey | contains("ScaleOutArn") ] | any) | .OutputValue'
)
ASG_NAME=$(
aws cloudformation describe-stacks \
--stack-name "$CLOUDFORMATION_STACK_NAME" \
--profile developerPlayground \
--region eu-west-1 \
--no-cli-pager | \
jq -r '.Stacks[].Outputs[] | select( [.OutputKey | contains("AutoscalingGroupName") ] | any) | .OutputValue'
)
CURRENT_DESIRED_CAPACITY=$(
aws autoscaling describe-auto-scaling-groups \
--auto-scaling-group-names "$ASG_NAME" \
--profile developerPlayground \
--region eu-west-1 | \
jq -r '.AutoScalingGroups[].DesiredCapacity'
)
aws autoscaling execute-policy \
--policy-name "$POLICY_ARN" \
--profile developerPlayground \
--region eu-west-1
NEW_DESIRED_CAPACITY=$(
aws autoscaling describe-auto-scaling-groups \
--auto-scaling-group-names "$ASG_NAME" \
--profile developerPlayground \
--region eu-west-1 | \
jq -r '.AutoScalingGroups[].DesiredCapacity'
)
echo "Desired capacity has been updated from $CURRENT_DESIRED_CAPACITY to $NEW_DESIRED_CAPACITY"