-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: various
run local
fixes (#5459)
Fixes the following issues: - Download the ARM version of session manager plugin in pause container if using ARM binary - Considers all containers "essential" as we did previously - meaning, if a container stops, that is reported as an error - Adds back status messages of what the orchestrator is doing after `Stop()` - Passes `--init` to `docker run` for the pause container so it responds to `docker stop` By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the Apache 2.0 License.
- Loading branch information
1 parent
c94bba3
commit 9d9e8d6
Showing
4 changed files
with
177 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
FROM public.ecr.aws/amazonlinux/amazonlinux:2023 | ||
|
||
RUN dnf install -y aws-cli iptables | ||
RUN dnf install -y https://s3.amazonaws.com/session-manager-downloads/plugin/latest/linux_64bit/session-manager-plugin.rpm | ||
|
||
ARG ARCH=64bit | ||
# url from https://docs.aws.amazon.com/systems-manager/latest/userguide/install-plugin-linux.html | ||
RUN dnf install -y https://s3.amazonaws.com/session-manager-downloads/plugin/latest/linux_${ARCH}/session-manager-plugin.rpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.