mirror of
https://github.com/tedkulp/dotfiles
synced 2026-03-05 13:40:18 -05:00
* Switch back to starship from powerline * Switch from n to nvm * Other random stuff
50 lines
1.7 KiB
Bash
50 lines
1.7 KiB
Bash
ecsInstances() {
|
|
cluster=$1
|
|
profile=${2:-default}
|
|
aws ecs list-container-instances --cluster $cluster --profile $profile | jq -r '.containerInstanceArns | join(" ")'
|
|
}
|
|
|
|
ecsInstanceInfo() {
|
|
cluster=$1
|
|
profile=${2:-default}
|
|
instances=(`ecsInstances $cluster $profile`)
|
|
aws ecs describe-container-instances --cluster $cluster --profile $profile --container-instances $instances[@]
|
|
}
|
|
|
|
ecsInstanceIds() {
|
|
cluster=$1
|
|
profile=${2:-default}
|
|
ecsInstanceInfo $cluster $profile | jq -r '.containerInstances[].ec2InstanceId'
|
|
}
|
|
|
|
asgInstanceIds() {
|
|
cluster=$1
|
|
profile=${2:-default}
|
|
aws autoscaling describe-auto-scaling-groups --profile $profile | jq -r '.AutoScalingGroups[] | select(.AutoScalingGroupName == "$cluster") | .Instances | map(.InstanceId) | join(" ")'
|
|
}
|
|
|
|
xecsSsh() {
|
|
cluster=$1
|
|
profile=${2:-default}
|
|
user=${3:-"ec2-user"}
|
|
# KEYS=(`find ~/.ssh/*$profile*.pem | xargs -I {} echo "-i {}" | xargs`)
|
|
KEYS=(`find ~/.ssh/$profile.pem | xargs -I {} echo "-i {}" | xargs`)
|
|
echo $KEYS
|
|
CMD="xpanes -tsc \"SSM_PROFILE=$profile autossh -M 0 ${KEYS[@]} -o ServerAliveInterval=60 -o StrictHostKeyChecking=no $user@{}\" $(ecsInstanceIds $cluster $profile | xargs)"
|
|
eval $CMD
|
|
}
|
|
|
|
xasgSsh() {
|
|
cluster=$1
|
|
profile=${2:-default}
|
|
user=${3:-"ec2-user"}
|
|
key=${4:-$profile}
|
|
# KEYS=(`find ~/.ssh/*$profile*.pem | xargs -I {} echo "-i {}" | xargs`)
|
|
KEYS=(`find ~/.ssh/$key.pem | xargs -I {} echo "-i {}" | xargs`)
|
|
echo $KEYS
|
|
echo $(asgInstanceIds $cluster $profile | xargs)
|
|
CMD="xpanes -tsc \"SSM_PROFILE=$profile autossh -M 0 ${KEYS[@]} -o ServerAliveInterval=60 -o StrictHostKeyChecking=no $user@{}\" $(asgInstanceIds $cluster $profile | xargs)"
|
|
echo $CMD
|
|
# eval $CMD
|
|
}
|