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

feat: upgrade APISIX to 2.13.2 #322

Closed
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/apisix-docker-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

runs-on: ubuntu-latest
env:
APISIX_DOCKER_TAG: 2.14.1-${{ matrix.platform }}
APISIX_DOCKER_TAG: 2.13.2-${{ matrix.platform }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look like we need to change the way we release a patch version for apisix-docker.
Otherwise, the latest version will be rollbacked.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we just need to make apisix-docker build 2.13.2 the image?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or can we split the latest version and LTS version?

Copy link
Member Author

@tzssangglass tzssangglass Jun 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps we need to develop a process for testing, making and pushing images for LTS version

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree.

steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


# APISIX ARGS
APISIX_VERSION ?= 2.14.1
APISIX_VERSION ?= 2.13.2
IMAGE_NAME = apache/apisix
IMAGE_TAR_NAME = apache_apisix

Expand Down
2 changes: 1 addition & 1 deletion all-in-one/apisix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

ARG ENABLE_PROXY=false
ARG APISIX_VERSION=2.14.1
ARG APISIX_VERSION=2.13.2
ARG ETCD_VERSION=v3.4.14

# Build Apache APISIX
Expand Down
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ARG ENABLE_PROXY=false
# Build Apache APISIX
FROM api7/apisix-base:1.19.9.1.6

ARG APISIX_VERSION=2.14.1
ARG APISIX_VERSION=2.13.2
LABEL apisix_version="${APISIX_VERSION}"

ARG ENABLE_PROXY
Expand Down
2 changes: 1 addition & 1 deletion centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

FROM centos:7

ARG APISIX_VERSION=2.14.1
ARG APISIX_VERSION=2.13.2
LABEL apisix_version="${APISIX_VERSION}"

RUN yum install -y https://repos.apiseven.com/packages/centos/apache-apisix-repo-1.0-1.noarch.rpm \
Expand Down
2 changes: 1 addition & 1 deletion example/docker-compose-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
apisix:

apisix:
image: apache/apisix:2.14.1-alpine
image: apache/apisix:2.13.2-alpine
restart: always
volumes:
- ./apisix_log:/usr/local/apisix/logs
Expand Down
2 changes: 1 addition & 1 deletion example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
apisix:

apisix:
image: apache/apisix:2.14.1-alpine
image: apache/apisix:2.13.2-alpine
restart: always
volumes:
- ./apisix_log:/usr/local/apisix/logs
Expand Down