and then click the "Set Me Up" button. For detailed
instructions, please refer to this `Knowledgebase article <https://kb.isc.org/docs/isc-kea-packages>`_.
+ISC maintains two types of repositories: stable and development.
+The stable repositories contain a single stable release (e.g.,
+kea-2-4 or kea-2-6) along with all its maintenance updates.
+Separate repositories were introduced to minimize the risk of
+unintentionally upgrading from one stable release to another.
+
+The development repository, kea-dev, includes current and
+future development releases, which ISC does not recommend
+for production use. Packages in the kea-dev repository are
+subject to cleanup, and older versions may be removed.
+
Installation From Cloudsmith Packages
-------------------------------------
ISC provides Kea packages for Alpine, Debian, Fedora, RHEL, and Ubuntu.
1. Go to `Kea on cloudsmith.io <https://cloudsmith.io/~isc/repos/>`__.
-2. Choose the Cloudsmith repository e.g. |cloudsmith_repo| for Kea |version|.
+2. Choose the Cloudsmith repository e.g. |cloudsmith_repo| for Kea |version|. Or kea-2-4 for Kea 2.4.
+
+.. note::
+ All stable releases are stored in separate repositories, such as kea-2-4, kea-2-6, and so on.
+ All development releases, which are not recommended for production use,
+ are located in the kea-dev repository.
3. Click on the arrow beside the "Set Me Up" button and select the desired OS flavor:
Alpine, Debian, or RedHat.
version = release
dashed_version_series='-'.join(version.split('.')[0:2])
+# now let's replace versions with odd minor number with dev
+if int(dashed_version_series[-1]) % 2 != 0:
+ dashed_version_series = 'dev'
+
# -- General configuration ---------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.