Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed minor issues for ecs IAM scripts #70

Merged
merged 6 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,10 @@ ipython_config.py

# Coverage
.coverage

# Terraform
**/.terraform/**
**/*.tfstate*
**/.terraform.lock.hcl
**/*.tfvars
**/*.plan
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED]

### Changed

- Changed the `name` variable / attribute to `prefix` to follow uniformity across all executor plugins
- Changed the **dict** type of defaults to `ExecutorInfraDefaults` & `ExecutorPluginDefaults`
- Minor changes in `MANIFEST.in` file

### Added

- Added a tftpl file for ECS executor to output the configuration

## [0.32.0] - 2023-10-06

### Changed
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include VERSION
include requirements.txt
include covalent_ecs_plugin/assets/infra/*
include covalent_ecs_plugin/assets/infra/*.swp
include covalent_ecs_plugin/assets/infra/*.tf
15 changes: 15 additions & 0 deletions covalent_ecs_plugin/assets/infra/ecs.conf.tftpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[ecs]
credentials=${credentials}
profile=${profile}
region=${region}
s3_bucket_name=${s3_bucket_name}
ecs_cluster_name=${ecs_cluster_name}
ecs_task_execution_role_name=${ecs_task_execution_role_name}
ecs_task_role_name=${ecs_task_role_name}
ecs_task_subnet_id=${ecs_task_subnet_id}
ecs_task_security_group_id=${ecs_task_security_group_id}
ecs_task_log_group_name=${ecs_task_log_group_name}
vcpu=${vcpu}
memory=${memory}
cache_dir=${cache_dir}
poll_freq=${poll_freq}
6 changes: 3 additions & 3 deletions covalent_ecs_plugin/assets/infra/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data "aws_iam_policy_document" "ecs_tasks_execution_role" {
}

resource "aws_iam_role" "ecs_tasks_execution_role" {
name = "${var.name}-task-execution-role"
name = "${var.prefix}-task-execution-role"
assume_role_policy = data.aws_iam_policy_document.ecs_tasks_execution_role.json
}

Expand All @@ -20,7 +20,7 @@ resource "aws_iam_role_policy_attachment" "ecs_tasks_execution_role" {
}

resource "aws_iam_role_policy" "task_policy" {
name = "${var.name}-task-policy"
name = "${var.prefix}-task-policy"
role = aws_iam_role.task_role.id

policy = jsonencode({
Expand Down Expand Up @@ -49,7 +49,7 @@ resource "aws_iam_role_policy" "task_policy" {
}

resource "aws_iam_role" "task_role" {
name = "${var.name}-task-role"
name = "${var.prefix}-task-role"

assume_role_policy = jsonencode({
"Version" : "2012-10-17",
Expand Down
35 changes: 31 additions & 4 deletions covalent_ecs_plugin/assets/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ provider "aws" {
}

resource "aws_s3_bucket" "bucket" {
bucket = "${var.name}-bucket"
bucket = "${var.prefix}-bucket"
force_destroy = true
}

Expand All @@ -38,7 +38,7 @@ resource "aws_s3_bucket_acl" "bucket_acl" {
}

resource "aws_ecr_repository" "ecr_repository" {
name = "${var.name}-ecr-repo"
name = "${var.prefix}-ecr-repo"
image_tag_mutability = "IMMUTABLE"

force_delete = true
Expand All @@ -49,11 +49,11 @@ resource "aws_ecr_repository" "ecr_repository" {
}

resource "aws_cloudwatch_log_group" "log_group" {
name = "${var.name}-log-group"
name = "${var.prefix}-log-group"
}

resource "aws_ecs_cluster" "ecs_cluster" {
name = "${var.name}-ecs-cluster"
name = "${var.prefix}-ecs-cluster"

configuration {
execute_command_configuration {
Expand All @@ -64,3 +64,30 @@ resource "aws_ecs_cluster" "ecs_cluster" {
}
}
}

# Executor Covalent config section
data template_file executor_config {
template = "${file("${path.module}/ecs.conf.tftpl")}"

vars = {
credentials=var.credentials
profile=var.profile
region=var.aws_region
s3_bucket_name=aws_s3_bucket.bucket.id
ecs_cluster_name=aws_ecs_cluster.ecs_cluster.name
ecs_task_execution_role_name=aws_iam_role.ecs_tasks_execution_role.name
ecs_task_role_name=aws_iam_role.task_role.name
ecs_task_subnet_id=module.vpc.public_subnets[0]
ecs_task_security_group_id=aws_security_group.sg.id
ecs_task_log_group_name=aws_cloudwatch_log_group.log_group.name
vcpu=var.vcpus
memory=var.memory
cache_dir=var.cache_dir
poll_freq=var.poll_freq
}
}

resource local_file executor_config {
content = data.template_file.executor_config.rendered
filename = "${path.module}/ecs.conf"
}
4 changes: 2 additions & 2 deletions covalent_ecs_plugin/assets/infra/networking.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module "vpc" {

create_vpc = (var.vpc_id == "")

name = "${var.name}-vpc"
name = "${var.prefix}-vpc"
cidr = var.vpc_cidr

azs = ["${var.aws_region}a"]
Expand All @@ -35,7 +35,7 @@ module "vpc" {
}

resource "aws_security_group" "sg" {
name = "${var.name}-sg"
name = "${var.prefix}-sg"
description = "Allow traffic to Covalent server"
vpc_id = "${var.vpc_id == "" ? module.vpc.vpc_id : var.vpc_id}"

Expand Down
37 changes: 36 additions & 1 deletion covalent_ecs_plugin/assets/infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

variable "name" {
variable "prefix" {
default = "covalent-ecs-ft"
description = "Name used to prefix AWS resources"
}
Expand All @@ -38,3 +38,38 @@ variable "vpc_cidr" {
default = "10.0.0.0/24"
description = "VPC CIDR range"
}

variable "cache_dir" {
type = string
default = "/tmp/covalent"
description = "Path on local machine where temporary files are generated"
}

variable "poll_freq" {
type = number
default = 5
description = "Frequency with which to poll AWS batch for the result object"
}

variable "vcpus" {
type = number
default = 2
description = "Number of vcpus a batch job will consume by default"
}

variable "memory" {
type = number
default = 2
description = "Memory in GB for the batch job"
}

variable "credentials" {
type = string
default = ""
description = "Path to the AWS shared configuration file"
}

variable "profile" {
type = string
description = "AWS profile used during execution"
}
60 changes: 43 additions & 17 deletions covalent_ecs_plugin/ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,51 @@
from covalent._shared_files.config import get_config
from covalent._shared_files.logger import app_log
from covalent_aws_plugins import AWSExecutor
from pydantic import BaseModel

from .utils import _execute_partial_in_threadpool, _load_pickle_file

_EXECUTOR_PLUGIN_DEFAULTS = {
"credentials": "",
"profile": "",
"region": "",
"s3_bucket_name": "covalent-fargate-task-resources",
"ecs_cluster_name": "covalent-fargate-cluster",
"ecs_task_execution_role_name": "ecsTaskExecutionRole",
"ecs_task_role_name": "CovalentFargateTaskRole",
"ecs_task_subnet_id": "",
"ecs_task_security_group_id": "",
"ecs_task_log_group_name": "covalent-fargate-task-logs",
"vcpu": 0.25,
"memory": 0.5,
"cache_dir": "/tmp/covalent",
"poll_freq": 10,
}

class ExecutorPluginDefaults(BaseModel):
credentials: str = ""
profile: str = ""
region: str = ""
s3_bucket_name: str = "covalent-fargate-task-resources"
ecs_cluster_name: str = "covalent-fargate-cluster"
ecs_task_execution_role_name: str = "ecsTaskExecutionRole"
ecs_task_role_name: str = "CovalentFargateTaskRole"
ecs_task_subnet_id: str = ""
ecs_task_security_group_id: str = ""
ecs_task_log_group_name: str = "covalent-fargate-task-logs"
vcpu: float = 0.25
memory: float = 0.5
cache_dir: str = "/tmp/covalent"
poll_freq: int = 10


class ExecutorInfraDefaults(BaseModel):
"""
Configuration values for provisioning AWS Batch cloud infrastructure
"""

prefix: str = ""
credentials: str = ""
profile: str = ""
region: str = ""
s3_bucket_name: str = "covalent-fargate-task-resources"
ecs_cluster_name: str = "covalent-fargate-cluster"
ecs_task_execution_role_name: str = "ecsTaskExecutionRole"
ecs_task_role_name: str = "CovalentFargateTaskRole"
ecs_task_subnet_id: str = ""
ecs_task_security_group_id: str = ""
ecs_task_log_group_name: str = "covalent-fargate-task-logs"
vcpu: float = 0.25
memory: float = 0.5
cache_dir: str = "/tmp/covalent"
poll_freq: int = 10


_EXECUTOR_PLUGIN_DEFAULTS = ExecutorPluginDefaults().dict()

EXECUTOR_PLUGIN_NAME = "ECSExecutor"

Expand Down Expand Up @@ -215,7 +241,7 @@ async def submit_task(self, task_metadata: Dict, identity: Dict) -> Any:
],
},
],
cpu=str(int(self.vcpu * 1024)),
cpu=str(int(self.vcpu)),
memory=str(int(self.memory * 1024)),
)
await _execute_partial_in_threadpool(partial_func)
Expand Down
Loading