Define and run container tasks on AWS Fargate immediately or with schedule
Project description
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cdk-fargate-run-task-0.1.29.tar.gz.
File metadata
- Download URL: cdk-fargate-run-task-0.1.29.tar.gz
- Upload date:
- Size: 33.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a4beb9a15cd4ccc57d5368e90222fccfa2fdb102d0a572310225cad651f1342
|
|
| MD5 |
fd4d6f4f71d529e7b51a533fdf18cd72
|
|
| BLAKE2b-256 |
f55ebbba11b5d9454391dc9a28efdac764a5b9b7744f3e7004defb1ae22570bc
|
File details
Details for the file cdk_fargate_run_task-0.1.29-py3-none-any.whl.
File metadata
- Download URL: cdk_fargate_run_task-0.1.29-py3-none-any.whl
- Upload date:
- Size: 32.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95be0071022ee30672593879e2f2cd1f4be1be3c80b77aca6cb8036d587a8bf6
|
|
| MD5 |
26f949e07e85972bd5810af541680ea1
|
|
| BLAKE2b-256 |
ec70b231ccfa5c4db1222da394e504b152f07b4db7423bb83c93fd4ec30b577a
|