Difference between revisions of "AWS ECS Task definition parameters"
Jump to navigation
Jump to search
(5 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
* <code>[[aws ecs register-task-definition]]</code> | * <code>[[aws ecs register-task-definition]]</code> | ||
+ | |||
+ | |||
+ | "ulimits": [ | ||
+ | { | ||
+ | "name": "core"|"cpu"|"data"|"fsize"|"locks"|"memlock"|"msgqueue"|"nice"|"nofile"|"nproc"|"rss"|"rtprio"|"rttime"|"sigpending"|"stack", | ||
+ | "softLimit": integer, | ||
+ | "hardLimit": integer | ||
+ | } | ||
+ | ... | ||
+ | ] | ||
+ | |||
+ | |||
+ | |||
+ | "ulimits": [ | ||
+ | { | ||
+ | "name": "nofile", | ||
+ | "softLimit": 500000, | ||
+ | "hardLimit": 500000 | ||
+ | } | ||
+ | ] | ||
[[ulimits]] | [[ulimits]] | ||
+ | [[AWS ECS task definitions]] | ||
+ | [[docker run --memory]] | ||
+ | [[memoryReservation]] | ||
+ | [[healthCheck]] | ||
+ | [[Amazon ECS Task Definition Deletion]] | ||
+ | |||
== See also == | == See also == |
Latest revision as of 19:14, 10 July 2023
https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html
"ulimits": [ { "name": "core"|"cpu"|"data"|"fsize"|"locks"|"memlock"|"msgqueue"|"nice"|"nofile"|"nproc"|"rss"|"rtprio"|"rttime"|"sigpending"|"stack", "softLimit": integer, "hardLimit": integer } ... ]
"ulimits": [
{ "name": "nofile", "softLimit": 500000, "hardLimit": 500000 } ]
ulimits AWS ECS task definitions docker run --memory memoryReservation healthCheck Amazon ECS Task Definition Deletion
See also[edit]
Advertising: