From d33f78d76fefec1ba60af75890695a0897328ef5 Mon Sep 17 00:00:00 2001 From: Rajesh Susai Date: Wed, 16 Oct 2024 14:32:12 -0400 Subject: [PATCH] remove support for gallium --- .github/workflows/nodejs.yml | 2 +- docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md | 4 ++-- scripts/deploy-docker | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ef84831..f65fc30 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md b/docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md index f396c46..b2ad151 100644 --- a/docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md +++ b/docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md @@ -22,11 +22,11 @@ Docker images are often the basis of other images which rely on OS features (e.g * Docker images are tagged to specify * awsudo version * nodejs version (by LTS codename) - * Ex: `:v1.7.2-gallium` + * Ex: `:v1.7.2-iron` * Unspecified tag values "slide" to the latest version * Ex: these tags would be equivalent: * `:v1.7.2` - * `:gallium` + * `:iron` * `:latest` * Docker images are produced for every nodejs version until their [end-of-life][nodejs releases] * The most recent `aws` version (at build time) is included diff --git a/scripts/deploy-docker b/scripts/deploy-docker index 1bcc202..c36f483 100755 --- a/scripts/deploy-docker +++ b/scripts/deploy-docker @@ -14,7 +14,7 @@ echo "Deploying: awsudo/awsudo" LATEST_NODE_LTS=iron echo "Publishing tags specific to node LTS releases..." -for NODE_LTS in "gallium" "hydrogen" "iron"; do +for NODE_LTS in "hydrogen" "iron"; do docker build --build-arg node_lts="$NODE_LTS" --build-arg version="$VERSION" . \ -t awsudo/awsudo:"$NODE_LTS" \ -t awsudo/awsudo:v"${VERSION}"-"$NODE_LTS"