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

[ENGEN-450] Chore(debian 8): add deprecations of Debian 8 "Jessie" #3944

Merged
merged 2 commits into from
May 18, 2022
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
1 change: 1 addition & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
id: waitForNetlify
with:
site_name: "kongdocs"
max_timeout: 120
- name: Run link checker
run: |
cd broken-link-checker
Expand Down
6 changes: 4 additions & 2 deletions app/_includes/md/deb.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ You can install Kong by downloading an installation package or using our apt rep

{% if include.distribution == "debian" %}

{% if_version lte:2.8.x %}
- [8 Jessie]({{ site.links.download }}/gateway-2.x-debian-jessie/pool/all/k/kong/kong_{{site.data.kong_latest.version}}_amd64.deb)
{% endif_version %}
- [9 Stretch]({{ site.links.download }}/gateway-2.x-debian-stretch/pool/all/k/kong/kong_{{site.data.kong_latest.version}}_amd64.deb)
- [10 Buster]({{ site.links.download }}/gateway-2.x-debian-buster/pool/all/k/kong/kong_{{site.data.kong_latest.version}}_amd64.deb)
- [11 Bullseye]({{ site.links.download }}/gateway-2.x-debian-bullseye/pool/all/k/kong/kong_{{site.data.kong_latest.version}}_amd64.deb)
Expand All @@ -37,12 +39,12 @@ $ sudo dpkg -i kong.{{site.data.kong_latest.version}}.amd64.deb
To install from the command line

```bash
$ echo "deb [trusted=yes] {{ site.links.download }}/gateway-2.x-{{ include.distribution }}-$(lsb_release -sc)/ default all" | sudo tee /etc/apt/sources.list.d/kong.list
$ echo "deb [trusted=yes] {{ site.links.download }}/gateway-2.x-{{ include.distribution }}-$(lsb_release -sc)/ default all" | sudo tee /etc/apt/sources.list.d/kong.list
$ sudo apt-get update
$ sudo apt install -y kong
```

{% endnavtab %}
{% endnavtabs %}

{% include_cached /md/installation.md kong_version=page.kong_version %}
{% include_cached /md/installation.md kong_version=page.kong_version %}
13 changes: 11 additions & 2 deletions src/gateway/install-and-run/debian.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
---
title: Install Kong Gateway on Debian
---

{:.important}
> **Deprecation notice**: Support for running Kong Gateway on
Debian 8 ("Jessie") is now deprecated, as [Debian 8 ("Jessie") has reached End of Life (EOL)](https://www.debian.org/News/2020/20200709).
Starting with Kong Gateway 3.0.0.0, Kong is neither building new Debian 8 ("Jessie") images nor packages. Nor will Kong test package installation on Debian 8 ("Jessie").
> If you need to install Kong Gateway on Debian 8 ("Jessie"), see the documentation for
[previous versions](/gateway/2.8.x/install-and-run/debian/).
> <br><br>
> Kong Gateway Enterprise subscriptions can still use Debian 8 ("Jessie") in 2.8, but support
for Debian 8 ("Jessie") is planned to be removed in 3.0.

{:.install-banner}
> Download the latest {{page.kong_version}} package for Debian:
>
> * **Kong Gateway**:
> [**8 Jessie**]({{ site.links.download }}/gateway-2.x-debian-jessie/pool/all/k/kong-enterprise-edition/kong-enterprise-edition_{{page.kong_versions[page.version-index].ee-version}}_all.deb){:.install-link},
> [**9 Stretch**]({{ site.links.download }}/gateway-2.x-debian-stretch/pool/all/k/kong-enterprise-edition/kong-enterprise-edition_{{page.kong_versions[page.version-index].ee-version}}_all.deb){:.install-link},
> [**10 Buster**]({{ site.links.download }}/gateway-2.x-debian-buster/pool/all/k/kong-enterprise-edition/kong-enterprise-edition_{{page.kong_versions[page.version-index].ee-version}}_all.deb){:.install-link},
> or [**11 Bullseye**]({{ site.links.download }}/gateway-2.x-debian-bullseye/pool/all/k/kong-enterprise-edition/kong-enterprise-edition_{{page.kong_versions[page.version-index].ee-version}}_all.deb){:.install-link}
Expand All @@ -18,7 +28,6 @@ title: Install Kong Gateway on Debian
>
> <br>
> <span class="install-subtitle">View the list of all 2.x packages for
> [8 Jessie]({{ site.links.download }}/gateway-2.x-debian-jessie/pool/all/k/){:.install-listing-link},
> [9 Stretch]({{ site.links.download }}/gateway-2.x-debian-stretch/pool/all/k/){:.install-listing-link},
> [10 Buster]({{ site.links.download }}/gateway-2.x-debian-buster/pool/all/k/){:.install-listing-link}, or
> [11 Bullseye]({{ site.links.download }}/gateway-2.x-debian-bullseye/pool/all/k/){:.install-listing-link}
Expand Down