You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,33 @@
1
1
# Changelog
2
2
3
+
## 1.67.2
4
+
* Bug - Fix the generation of network bindings for Service Connect container [#3513](https://github.com/aws/amazon-ecs-agent/pull/3513)
5
+
* Bug - Prevent resetting valid agent state db when IMDS fails on startup [#3509](https://github.com/aws/amazon-ecs-agent/pull/3509)
6
+
7
+
## 1.67.1
8
+
* Bug - Read git hash from RELEASE_COMMIT file if possible [#3508](https://github.com/aws/amazon-ecs-agent/pull/3508)
9
+
10
+
## 1.67.0
11
+
* Bug - Don't log errors on instances not using GMSA [#3489](https://github.com/aws/amazon-ecs-agent/pull/3489)
12
+
* Enhancement - Update packaging Readme files with updated instructions to build init files [#3490](https://github.com/aws/amazon-ecs-agent/pull/3490)
13
+
* Bug - Fix unit tests for cgroup v2 [#3491](https://github.com/aws/amazon-ecs-agent/pull/3491)
14
+
* Enhancement - Update readme for ECS_SELINUX_CAPABLE to clarify Z-mode mount only and limited support [#3496](https://github.com/aws/amazon-ecs-agent/pull/3496)
15
+
* Bug - Fix agent short hash version bug [#3497](https://github.com/aws/amazon-ecs-agent/pull/3497)
16
+
* Bug - Use Ubuntu 20.04 for linux GH Unit tests [#3501](https://github.com/aws/amazon-ecs-agent/pull/3501)
17
+
* Feature - Container port range mapping [#3506](https://github.com/aws/amazon-ecs-agent/pull/3506)
18
+
19
+
## 1.66.2
20
+
* Bug - Add ecs-serviceconnect to CNI and Agent build scripts [#3482](https://github.com/aws/amazon-ecs-agent/pull/3482)
21
+
* Bug - add call to update-version.sh to dockerfree-agent-image [#3484](https://github.com/aws/amazon-ecs-agent/pull/3484)
22
+
23
+
## 1.66.1
24
+
* Bug - Update ecs agent version short hash to point to built head [#3476](https://github.com/aws/amazon-ecs-agent/pull/3476)
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,9 +146,9 @@ additional details on each available environment variable.
146
146
|`ECS_RESERVED_MEMORY`| 32 | Reduction, in MiB, of the memory capacity of the instance that is reported to Amazon ECS. Used by Amazon ECS when placing tasks on container instances. This doesn't reserve memory usage on the instance. | 0 | 0 |
147
147
|`ECS_AVAILABLE_LOGGING_DRIVERS`|`["awslogs","fluentd","gelf","json-file","journald","logentries","splunk","syslog"]`| Which logging drivers are available on the container instance. |`["json-file","none"]`|`["json-file","none"]`|
148
148
|`ECS_DISABLE_PRIVILEGED`|`true`| Whether launching privileged containers is disabled on the container instance. |`false`|`false`|
149
-
|`ECS_SELINUX_CAPABLE`|`true`| Whether SELinux is available on the container instance. |`false`|`false`|
149
+
|`ECS_SELINUX_CAPABLE`|`true`| Whether SELinux is available on the container instance. (Limited support; Z-mode mounts only.) |`false`|`false`|
150
150
|`ECS_APPARMOR_CAPABLE`|`true`| Whether AppArmor is available on the container instance. |`false`|`false`|
151
-
|`ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION`| 10m | Default time to wait to delete containers for a stopped task (see also `ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION_JITTER`). If set to less than 1 minute, the value is ignored. | 3h | 3h |
151
+
|`ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION`| 10m | Default time to wait to delete containers for a stopped task (see also `ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION_JITTER`). If set to less than 1 second, the value is ignored.| 3h | 3h |
152
152
|`ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION_JITTER`| 1h | Jitter value for the task engine cleanup wait duration. When specified, the actual cleanup wait duration time for each task will be the duration specified in `ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION` plus a random duration between 0 and the jitter duration. | blank | blank |
153
153
|`ECS_CONTAINER_STOP_TIMEOUT`| 10m | Instance scoped configuration for time to wait for the container to exit normally before being forcibly killed. | 30s | 30s |
154
154
|`ECS_CONTAINER_START_TIMEOUT`| 10m | Timeout before giving up on starting a container. | 3m | 8m |
@@ -204,7 +204,8 @@ additional details on each available environment variable.
204
204
|`ECS_ENABLE_GPU_SUPPORT`|`true`| Whether you use container instances with GPU support. This parameter is specified for the agent. You must also configure your task definitions for GPU. For more information |`false`|`Not applicable`|
205
205
|`HTTP_PROXY`|`10.0.0.131:3128`| The hostname (or IP address) and port number of an HTTP proxy to use for the Amazon ECS agent to connect to the internet. For example, this proxy will be used if your container instances do not have external network access through an Amazon VPC internet gateway or NAT gateway or instance. If this variable is set, you must also set the NO_PROXY variable to filter Amazon EC2 instance metadata and Docker daemon traffic from the proxy. |`null`|`null`|
206
206
|`NO_PROXY`| <For Linux: 169.254.169.254,169.254.170.2,/var/run/docker.sock | For Windows: 169.254.169.254,169.254.170.2,\\.\pipe\docker_engine> | The HTTP traffic that should not be forwarded to the specified HTTP_PROXY. You must specify 169.254.169.254,/var/run/docker.sock to filter Amazon EC2 instance metadata and Docker daemon traffic from the proxy. |`null`|`null`|
207
-
207
+
|`CREDENTIALS_FETCHER_HOST`|`unix:///var/credentials-fetcher/socket/credentials_fetcher.sock`| Used to create a connection to the [credentials-fetcher daemon](https://github.com/aws/credentials-fetcher); to support gMSA on Linux. The default is fine for most users, only needs to be modified if user is configuring a custom credentials-fetcher socket path, ie, [CF_UNIX_DOMAIN_SOCKET_DIR](https://github.com/aws/credentials-fetcher#default-environment-variables). |`unix:///var/credentials-fetcher/socket/credentials_fetcher.sock`| Not Applicable |
208
+
|`CREDENTIALS_FETCHER_SECRET_NAME_FOR_DOMAINLESS_GMSA`|`secretmanager-secretname`| Used to support scaling option for gMSA on Linux [credentials-fetcher daemon](https://github.com/aws/credentials-fetcher). If user is configuring gMSA on a non-domain joined instance, they need to create an Active Directory user with access to retrieve principals for the gMSA account and store it in secrets manager |`secretmanager-secretname`| Not Applicable |
208
209
### Persistence
209
210
210
211
When you run the Amazon ECS Container Agent in production, its `datadir` should be persisted between runs of the Docker
0 commit comments