Skip to main content

Define and run container tasks on AWS Fargate immediately or with schedule

Project description

NPM version PyPI version Release

cdk-fargate-run-task

Define and run container tasks on AWS Fargate at once or by schedule.

sample

# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
app = cdk.App()

env = {
    "account": process.env.CDK_DEFAULT_ACCOUNT,
    "region": process.env.CDK_DEFAULT_REGION
}

stack = cdk.Stack(app, "run-task-demo-stack", env=env)

# define your task
task = ecs.FargateTaskDefinition(stack, "Task", cpu=256, memory_limit_mi_b=512)

# add contianer into the task
task.add_container("Ping",
    image=ecs.ContainerImage.from_registry("busybox"),
    command=["sh", "-c", "ping -c 3 google.com"
    ],
    logging=ecs.AwsLogDriver(
        stream_prefix="Ping",
        log_group=LogGroup(stack, "LogGroup",
            log_group_name=f"{stack.stackName}LogGroup",
            retention=RetentionDays.ONE_DAY
        )
    )
)

# deploy and run this task once
run_task_at_once = RunTask(stack, "RunDemoTaskOnce", task=task)

# or run it with schedule(every hour 0min)
RunTask(stack, "RunDemoTaskEveryHour",
    task=task,
    cluster=run_task_at_once.cluster,
    run_once=False,
    schedule=Schedule.cron(minute="0")
)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cdk-fargate-run-task-0.1.33.tar.gz (33.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cdk_fargate_run_task-0.1.33-py3-none-any.whl (31.8 kB view details)

Uploaded Python 3

File details

Details for the file cdk-fargate-run-task-0.1.33.tar.gz.

File metadata

  • Download URL: cdk-fargate-run-task-0.1.33.tar.gz
  • Upload date:
  • Size: 33.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.3.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.9

File hashes

Hashes for cdk-fargate-run-task-0.1.33.tar.gz
Algorithm Hash digest
SHA256 848a7eba92067ef3aa57b10108f636081803c3f57d187b91de8ba787a7a88109
MD5 ba07bf9cb7053829dc92ac52d35bd60f
BLAKE2b-256 69f30be94cdbf7f30bd605ca3c1de4584373bb2ab43f9ce6bf5846f93feb8bbb

See more details on using hashes here.

File details

Details for the file cdk_fargate_run_task-0.1.33-py3-none-any.whl.

File metadata

  • Download URL: cdk_fargate_run_task-0.1.33-py3-none-any.whl
  • Upload date:
  • Size: 31.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.3.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.9

File hashes

Hashes for cdk_fargate_run_task-0.1.33-py3-none-any.whl
Algorithm Hash digest
SHA256 a309f66127ec6a804c9fbca3a43d2c152ff5990241a7813b595ec1d537937f3a
MD5 c380af593373ebea1ca87a09c7df70ec
BLAKE2b-256 2f14db83f7371c87a8783a1552ce5d0fd2bff018e8d10e24425f3dd79e85503d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page