Skip to content

Commit

Permalink
remove support for gallium
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeshsusai committed Oct 16, 2024
1 parent 5c41805 commit d33f78d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy-docker
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d33f78d

Please sign in to comment.