Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 3, 2024
1 parent 5043c5b commit fecd324
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ecspresso/reviewapps/weaver-92/cleanup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

cd $(dirname $0)
find . -name "ecspresso.yml" | xargs -I{} -P10 ecspresso --config={} delete --force --terminate
sleep 10 # wait for ECS Services to be deleted
aws servicediscovery delete-service --id srv-f7pduvwkh3v4bzmb
aws elbv2 delete-rule --rule-arn
aws elbv2 delete-target-group --target-group-arn
Empty file.
6 changes: 6 additions & 0 deletions ecspresso/reviewapps/weaver-92/dreamkast-weaver/ecspresso.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
region: us-west-2
cluster: dreamkast-dev
service: weaver-92-dreamkast-weaver
service_definition: service-def.jsonnet
task_definition: task-def.jsonnet
timeout: 5m
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local dreamkast_weaver = import '../../../base/dreamkast-weaver.libsonnet';
local const = import '../const.libsonnet';

dreamkast_weaver.serviceDef(
region=const.region,
subnetIDs=const.privateSubnetIDs,
securityGroupID='sg-0af84e950ec9eb4f4', // dreamkast-dev-ecs-dreamkast-weaver
targetGroupArn=const.targetGroupArn.dkWeaver,
)
17 changes: 17 additions & 0 deletions ecspresso/reviewapps/weaver-92/dreamkast-weaver/task-def.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
local dreamkast_weaver = import '../../../base/dreamkast-weaver.libsonnet';
local const = import '../const.libsonnet';

dreamkast_weaver.taskDef(
family='dreamkast-dev-%s-ui' % [const.PR_NAME],
taskRoleName='dreamkast-dev-ecs-dreamkast-weaver',
imageTag=const.imageTags.dreamkast_weaver,

region=const.region,
dkInternalEndpoint=const.internalEndpoints.dk,
rdbInternalEndpoint=const.internalEndpoints.rdb,

rdsSecretManagerName=const.secretManager.rds,

enableLogging=true,
reviewapp=true,
)
88 changes: 88 additions & 0 deletions ecspresso/reviewapps/weaver-92/initialize.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
#!/usr/bin/env bash

cd $(dirname $0)

# required the following commands:
# * aws
# * jq
# * jsonnet

# variables
PR_NAME=${PR_NAME:?"PR_NAME must be specified"}
PR_NUMBER=${PR_NUMBER:?"PR_NUMBER must be specified"}
IMAGE_TAG=${IMAGE_TAG:?"IMAGE_TAG must be specified"}
LISTENER_RULE_PRIORITY_BASE=30000
LISTENER_RULE_PRIORITY=$(( LISTENER_RULE_PRIORITY_BASE + PR_NUMBER ))

VPC_ID="vpc-0f0d012967c635f34"
LISTENER_ARN="arn:aws:elasticloadbalancing:us-west-2:607167088920:listener/app/dreamkast-dev/122c5b4a47b64f9d/bc86e7b2e4bca8f5"
SERVICE_DISCOVERY_NAMESPACE="ns-53ijjrlltqf5r2gm"


if [ ! -f "cleanup.sh" ]; then
# create TargetGroup
TARGET_GROUP_ARN=$(aws elbv2 create-target-group \
--name "dreamkast-dev-${PR_NAME}-dreamkast" \
--target-type ip \
--protocol HTTP \
--port 3000 \
--vpc-id ${VPC_ID} \
--ip-address-type ipv4 \
| jq -r ".TargetGroups[0].TargetGroupArn")

# create ALB ListenerRule
LISTENER_RULE_ARN=$(aws elbv2 create-rule --listener-arn ${LISTENER_ARN} \
--priority ${LISTENER_RULE_PRIORITY} \
--conditions Field=host-header,Values="dreamkast-${PR_NAME}.dev.cloudnativedays.jp" \
--actions Type=forward,TargetGroupArn=${TARGET_GROUP_ARN} \
| jq -r ".Rules[] | select(.Priority == \"${LISTENER_RULE_PRIORITY}\") | .RuleArn")

# create ServiceDiscovery Services
SERVICE_ID_MYSQL=$(aws servicediscovery create-service \
--name "mysql-${PR_NAME}" \
--dns-config "NamespaceId="${SERVICE_DISCOVERY_NAMESPACE}",DnsRecords=[{Type="A",TTL="10"}]" \
--health-check-custom-config FailureThreshold=1 \
| jq -r ".Service.Id")

# replace variables in each ecspresso.yml
find . -name ecspresso.yml | xargs -I{} sed -i -e 's/__PR_NAME__/'${PR_NAME}'/g' {}

# replace variables in const.libsonnet
cat << _EOL_ | jsonnet - > ./const.libsonnet.tmp
local const = import './const.libsonnet';
const + {
PR_NAME: "${PR_NAME}",
targetGroupArn: {
dkWeaver: "${TARGET_GROUP_ARN}",
},
serviceDiscovery: {
mysql: "${SERVICE_ID_MYSQL}",
},
imageTags: const.imageTags + {
dreamkast_weaver: "${IMAGE_TAG}",
},
}
_EOL_
mv const.libsonnet.tmp const.libsonnet

# create cleanup.sh
cat << _EOF_ > ./cleanup.sh
#!/usr/bin/env bash
cd \$(dirname \$0)
find . -name "ecspresso.yml" | xargs -I{} -P10 ecspresso --config={} delete --force --terminate
sleep 10 # wait for ECS Services to be deleted
aws servicediscovery delete-service --id ${SERVICE_ID_MYSQL}
aws elbv2 delete-rule --rule-arn ${LISTENER_RULE_ARN}
aws elbv2 delete-target-group --target-group-arn ${TARGET_GROUP_ARN}
_EOF_

else
# update imageTags
jsonnet const.libsonnet \
| jq ".imageTags.dreamkast_weaver|=\"${IMAGE_TAG}\"" \
> const.libsonnet.tmp
mv const.libsonnet.tmp const.libsonnet

fi
6 changes: 6 additions & 0 deletions ecspresso/reviewapps/weaver-92/mysql/ecspresso.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
region: us-west-2
cluster: dreamkast-dev
service: weaver-92-mysql
service_definition: service-def.jsonnet
task_definition: task-def.jsonnet
timeout: 5m
9 changes: 9 additions & 0 deletions ecspresso/reviewapps/weaver-92/mysql/service-def.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local redis = import '../../../base/mysql.libsonnet';
local const = import '../const.libsonnet';

redis.serviceDef(
region=const.region,
subnetIDs=const.privateSubnetIDs,
securityGroupID='sg-0e0029eb49f4d0455', // dreamkast-dev-ecs-mysql
serviceDiscoveryID=const.serviceDiscovery.mysql,
)
12 changes: 12 additions & 0 deletions ecspresso/reviewapps/weaver-92/mysql/task-def.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
local mysql = import '../../../base/mysql.libsonnet';
local const = import '../const.libsonnet';

mysql.taskDef(
family='dreamkast-stg-%s-mysql' % [const.PR_NAME],
taskRoleName='dreamkast-dev-ecs-mysql',
imageTag=const.imageTags.mysql,

region=const.region,

enableLogging=false,
)

0 comments on commit fecd324

Please sign in to comment.