From 0ff6418bd4a4ab0731818ec993608158806c3c00 Mon Sep 17 00:00:00 2001 From: "kineticcafe-oss-automation-bot[bot]" <182796818+kineticcafe-oss-automation-bot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:12:59 +0000 Subject: [PATCH] Update amazon/aws-cli base image 2.22.9 / 2024-12-03 "Automatic update to amazon/aws-cli:2.22.9" --- Changelog.md | 4 ++++ Dockerfile | 2 +- Justfile | 2 +- README.md | 8 ++++---- aws-cli-session-manager | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Changelog.md b/Changelog.md index b145e6d..6167760 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ The versioning for this image tracks the same versioning as AWS CLI. +## 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 diff --git a/Dockerfile b/Dockerfile index ca12056..b8ed10f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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} diff --git a/Justfile b/Justfile index 9794725..7d13a9e 100644 --- a/Justfile +++ b/Justfile @@ -1,4 +1,4 @@ -AWS_CLI_VERSION := '2.22.5' +AWS_CLI_VERSION := '2.22.9' # Build the image build: diff --git a/README.md b/README.md index 2006fca..ad51bc1 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ``` diff --git a/aws-cli-session-manager b/aws-cli-session-manager index 0f8d84e..b4dfe17 100755 --- a/aws-cli-session-manager +++ b/aws-cli-session-manager @@ -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