Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update amazon/aws-cli base image 2.22.9 / 2024-12-03 #47

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update amazon/aws-cli base image 2.22.9 / 2024-12-03
"Automatic update to amazon/aws-cli:2.22.9"
  • Loading branch information
commit 0ff6418bd4a4ab0731818ec993608158806c3c00
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ The versioning for this image tracks the same versioning as AWS CLI.

<!-- automatic-release -->

## 2.22.9 / 2024-12-03

- Automatic update to amazon/aws-cli:2.22.9

## 2.22.5 / 2024-11-26

- Automatic update to amazon/aws-cli:2.22.5
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG AWS_CLI_VERSION=2.22.5
ARG AWS_CLI_VERSION=2.22.9

FROM amazon/aws-cli:${AWS_CLI_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AWS_CLI_VERSION := '2.22.5'
AWS_CLI_VERSION := '2.22.9'

# Build the image
build:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Manager plugin][] for AWS CLI. If Amazon starts including image versions with
the session manager plugin included, this image will be discontinued.

These images can be pulled either from Docker Hub
(`kineticcafe/aws-cli-session-manager:2.22.5`) or GitHub Container Registry
(`ghcr.io/kineticcafe/aws-cli-session-manager:2.22.5`).
(`kineticcafe/aws-cli-session-manager:2.22.9`) or GitHub Container Registry
(`ghcr.io/kineticcafe/aws-cli-session-manager:2.22.9`).

## `aws-cli-session-manager` script

Expand All @@ -15,12 +15,12 @@ The `aws-cli-session-manager` script is recommended to be installed in your
had the native installation on your system, including the use of the AWS command
completer.

It will pull from `ghcr.io/kineticcafe/aws-cli-session-manager:2.22.5` by
It will pull from `ghcr.io/kineticcafe/aws-cli-session-manager:2.22.9` by
default. The version can be overridden by specifying `AWS_CLI_VERSION` and the
image can be overridden entirely by specifying `IMAGE`:

```sh
$ AWS_CLI_VERSION=2.22.5 ./aws-cli-session-manager --version
$ AWS_CLI_VERSION=2.22.9 ./aws-cli-session-manager --version
$ IMAGE=kineticcafe/aws-cli-session-manager:latest ./aws-cli-session-manager --version
```

Expand Down
2 changes: 1 addition & 1 deletion aws-cli-session-manager
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare engine image mountopt aws_cli_version force_tty read_write
engine="${ENGINE:-docker}" # for planned compatibility with podman
aws_cli_version="${AWS_CLI_VERSION:-2.22.5}"
aws_cli_version="${AWS_CLI_VERSION:-2.22.9}"
image="${IMAGE:-ghcr.io/kineticcafe/aws-cli-session-manager:${aws_cli_version}}"
force_tty=false
read_write=false
Expand Down
Loading