-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2389 from ASFHyP3/multi-burst-sandbox
Multi-burst functionality
- Loading branch information
Showing
13 changed files
with
940 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Deploy Multi-Burst Sandbox Stack to AWS | ||
|
||
on: | ||
push: | ||
branches: | ||
- multi-burst-sandbox | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- environment: hyp3-multi-burst-sandbox | ||
domain: hyp3-multi-burst-sandbox.asf.alaska.edu | ||
template_bucket: cf-templates-1hz9ldhhl4ahu-us-west-2 | ||
image_tag: test | ||
product_lifetime_in_days: 14 | ||
default_credits_per_user: 0 | ||
default_application_status: APPROVED | ||
cost_profile: DEFAULT | ||
deploy_ref: refs/heads/multi-burst-sandbox | ||
job_files: >- | ||
job_spec/INSAR_ISCE_BURST.yml | ||
job_spec/INSAR_ISCE_MULTI_BURST.yml | ||
job_spec/AUTORIFT.yml | ||
job_spec/RTC_GAMMA.yml | ||
job_spec/WATER_MAP.yml | ||
job_spec/WATER_MAP_EQ.yml | ||
instance_types: r6id.xlarge,r6id.2xlarge,r6id.4xlarge,r6id.8xlarge,r6idn.xlarge,r6idn.2xlarge,r6idn.4xlarge,r6idn.8xlarge | ||
default_max_vcpus: 640 | ||
expanded_max_vcpus: 640 | ||
required_surplus: 0 | ||
security_environment: ASF | ||
ami_id: /aws/service/ecs/optimized-ami/amazon-linux-2023/recommended/image_id | ||
distribution_url: '' | ||
|
||
environment: | ||
name: ${{ matrix.environment }} | ||
url: https://${{ matrix.domain }} | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ secrets.V2_AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.V2_AWS_SECRET_ACCESS_KEY }} | ||
aws-session-token: ${{ secrets.V2_AWS_SESSION_TOKEN }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
|
||
- uses: ./.github/actions/deploy-hyp3 | ||
with: | ||
TEMPLATE_BUCKET: ${{ matrix.template_bucket }} | ||
STACK_NAME: ${{ matrix.environment }} | ||
DOMAIN_NAME: ${{ matrix.domain }} | ||
API_NAME: ${{ matrix.environment }} | ||
CERTIFICATE_ARN: ${{ secrets.CERTIFICATE_ARN }} | ||
IMAGE_TAG: ${{ matrix.image_tag }} | ||
PRODUCT_LIFETIME: ${{ matrix.product_lifetime_in_days }} | ||
VPC_ID: ${{ secrets.VPC_ID }} | ||
SUBNET_IDS: ${{ secrets.SUBNET_IDS }} | ||
SECRET_ARN: ${{ secrets.SECRET_ARN }} | ||
CLOUDFORMATION_ROLE_ARN: ${{ secrets.CLOUDFORMATION_ROLE_ARN }} | ||
DEFAULT_CREDITS_PER_USER: ${{ matrix.default_credits_per_user }} | ||
DEFAULT_APPLICATION_STATUS: ${{ matrix.default_application_status }} | ||
COST_PROFILE: ${{ matrix.cost_profile }} | ||
JOB_FILES: ${{ matrix.job_files }} | ||
DEFAULT_MAX_VCPUS: ${{ matrix.default_max_vcpus }} | ||
EXPANDED_MAX_VCPUS: ${{ matrix.expanded_max_vcpus }} | ||
MONTHLY_BUDGET: ${{ secrets.MONTHLY_BUDGET }} | ||
REQUIRED_SURPLUS: ${{ matrix.required_surplus }} | ||
ORIGIN_ACCESS_IDENTITY_ID: ${{ secrets.ORIGIN_ACCESS_IDENTITY_ID }} | ||
SECURITY_ENVIRONMENT: ${{ matrix.security_environment }} | ||
AMI_ID: ${{ matrix.ami_id }} | ||
INSTANCE_TYPES: ${{ matrix.instance_types }} | ||
DISTRIBUTION_URL: ${{ matrix.distribution_url }} | ||
AUTH_PUBLIC_KEY: ${{ secrets.AUTH_PUBLIC_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
AWSTemplateFormatVersion: 2010-09-09 | ||
|
||
{% if security_environment == 'EDC' %} | ||
Parameters: | ||
|
||
SecurityGroupId: | ||
Type: String | ||
|
||
SubnetIds: | ||
Type: CommaDelimitedList | ||
{% endif %} | ||
|
||
Outputs: | ||
|
||
LambdaArn: | ||
Value: !GetAtt Lambda.Arn | ||
|
||
Resources: | ||
|
||
LogGroup: | ||
Type: AWS::Logs::LogGroup | ||
Properties: | ||
LogGroupName: !Sub "/aws/lambda/${Lambda}" | ||
RetentionInDays: 90 | ||
|
||
Role: | ||
Type: {{ 'Custom::JplRole' if security_environment in ('JPL', 'JPL-public') else 'AWS::IAM::Role' }} | ||
Properties: | ||
{% if security_environment in ('JPL', 'JPL-public') %} | ||
ServiceToken: !ImportValue Custom::JplRole::ServiceToken | ||
Path: /account-managed/hyp3/ | ||
{% endif %} | ||
AssumeRolePolicyDocument: | ||
Version: 2012-10-17 | ||
Statement: | ||
Action: sts:AssumeRole | ||
Principal: | ||
Service: lambda.amazonaws.com | ||
Effect: Allow | ||
ManagedPolicyArns: | ||
- !Ref Policy | ||
{% if security_environment == 'EDC' %} | ||
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole | ||
{% endif %} | ||
|
||
Policy: | ||
Type: {{ 'Custom::JplPolicy' if security_environment in ('JPL', 'JPL-public') else 'AWS::IAM::ManagedPolicy' }} | ||
Properties: | ||
{% if security_environment in ('JPL', 'JPL-public') %} | ||
ServiceToken: !ImportValue Custom::JplPolicy::ServiceToken | ||
Path: /account-managed/hyp3/ | ||
{% endif %} | ||
PolicyDocument: | ||
Version: 2012-10-17 | ||
Statement: | ||
- Effect: Allow | ||
Action: | ||
- logs:CreateLogStream | ||
- logs:PutLogEvents | ||
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/lambda/*" | ||
|
||
Lambda: | ||
Type: AWS::Lambda::Function | ||
Properties: | ||
Code: src/ | ||
Handler: set_batch_overrides.lambda_handler | ||
MemorySize: 128 | ||
Role: !GetAtt Role.Arn | ||
Runtime: python3.9 | ||
Timeout: 30 | ||
{% if security_environment == 'EDC' %} | ||
VpcConfig: | ||
SecurityGroupIds: | ||
- !Ref SecurityGroupId | ||
SubnetIds: !Ref SubnetIds | ||
{% endif %} |
Oops, something went wrong.