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

[KAG-2033] Deprecate CentOS 7 Packages #11359

Merged
merged 4 commits into from
Aug 14, 2023
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
16 changes: 0 additions & 16 deletions .github/matrix-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,6 @@ build-packages:
package: deb
check-manifest-suite: debian-11-amd64

# CentOS
- label: centos-7
image: centos:7
package: rpm
package-type: el7
bazel-args: --//:wasmx_el7_workaround=true
check-manifest-suite: el7-amd64

# RHEL
- label: rhel-7
image: centos:7
Expand Down Expand Up @@ -155,14 +147,6 @@ release-packages:
artifact-type: debian
artifact: kong.amd64.deb

# CentOS
- label: centos-7
package: rpm
artifact-from: centos-7
artifact-version: 7
artifact-type: centos
artifact: kong.el7.amd64.rpm

# RHEL
- label: rhel-7
package: rpm
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
- Ubuntu 18.04 artifacts are no longer supported as it's EOL
- AmazonLinux 2022 artifacts are renamed to AmazonLinux 2023 according to AWS's decision

### Deprecations

- **CentOS packages are now removed from the release and are no longer supported in future versions.**

#### Core

- '/schemas' endpoint returns additional information about cross-field validation as part of the schema. This should help tools that use the Admin API to perform better client-side validation.
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ sudo apt update \

```

Fedora/CentOS/RHEL:
Fedora/RHEL:

```shell
dnf install \
Expand Down
3 changes: 0 additions & 3 deletions scripts/release-kong.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ case "$ARTIFACT_TYPE" in
debian|ubuntu)
OUTPUT_FILE_SUFFIX=".$ARTIFACT_VERSION.$ARCHITECTURE.deb"
;;
centos)
OUTPUT_FILE_SUFFIX=".el$ARTIFACT_VERSION.$ARCHITECTURE.rpm"
;;
rhel)
OUTPUT_FILE_SUFFIX=".rhel$ARTIFACT_VERSION.$ARCHITECTURE.rpm"
;;
Expand Down
Loading