diff --git a/_config.yml b/_config.yml
index e279911543..779ec35217 100644
--- a/_config.yml
+++ b/_config.yml
@@ -48,6 +48,8 @@ navigation:
url: /manuals/latest/index.html
- title: Plugins
url: /plugins/
+ - title: Foreman Release Cycle
+ url: /release_cycle.html
- title: Foreman API docs
url: https://apidocs.theforeman.org/foreman/latest/apidoc/v2.html
- title: Foreman+Katello API docs
diff --git a/release_cycle.md b/release_cycle.md
new file mode 100644
index 0000000000..69784b5d13
--- /dev/null
+++ b/release_cycle.md
@@ -0,0 +1,83 @@
+---
+layout: default
+title: Foreman Release Cycle
+---
+
+# Foreman Release Cycle
+
+## Policy
+
+New Foreman and Katello versions are released roughly every three months and the two latest released minors are supported.
+
+NOTE: version numbers follow the MAJOR.MINOR.PATCH convention.
+
+Eg. when MAJOR.3.PATCH is released, MAJOR.2.PATCH is still supported and MAJOR.1.PATCH goes EOL.
+
+### Upgrades paths
+
+Each minor version can be directly upgraded to any of the following patches released _for the same minor_.
+Eg. both **MAJOR.MINOR.1 -> MAJOR.MINOR.2 -> MAJOR.MINOR.3** and **MAJOR.MINOR.1 -> MAJOR.MINOR.3** are valid upgrade paths.
+
+Each minor version can only be upgraded to the next minor version (regardless of patches versions).
+_Intermediate upgrades can not be skipped_.
+Eg. both **MAJOR.1.0 -> MAJOR.2.0 -> MAJOR.3.0** and **MAJOR.1.0 -> MAJOR.2.2 -> MAJOR.3.1** are valid upgrade paths.
+
+**It is not possible to directly upgrade MAJOR.1.0 -> MAJOR.3.0.**
+
+
+
+## Supported Versions
+
+Actually these are supported, as the latest two released minors:
+
+| Release | Status |
+{% for release in site.foreman_latest_releases %}
+|{{ release.minmaj }} | Supported |
+{% endfor %}
+
+### Corresponding Katello versions
+
+After Foreman 5.0, Foreman and Katello versions will be in sync (see [Versioning Sync RFC](https://community.theforeman.org/t/rfc-sync-foreman-and-katello-versioning-and-reset-both-to-5-0-with-containerized-deployment/45758) for details).
+
+Katello 5.0 will be based on Foreman 5.0, Katello 5.1 on Foreman 5.1 etc.
+
+For previous versions there is a mismatch:
+
+| Katello | Foreman | Status |
+| 4.21 | 3.19 | Supported |
+| 4.20 | 3.18 | Supported |
+| 4.19 | 3.17 | End Of Life |
+
+## EOL Versions
+
+
+{% assign ignored_versions = "" | split: "" %}
+
+{% assign ignored_versions = ignored_versions | push: "nightly" %}
+
+{% for release in site.foreman_latest_releases %}
+{% assign ignored_versions = ignored_versions | push: release.minmaj %}
+{% endfor %}
+
+These Foreman versions are End Of Life (unsupported), together with the corresponding Katello versions.
+
+| Release | Status |
+{% for version in site.foreman_versions %}
+{% unless ignored_versions contains version %}
+|{{ version }} | End Of Life |
+{% endunless %}
+{% endfor %}
+
+For the full history, check the [Releases category on Discourse](https://community.theforeman.org/c/release/20).
\ No newline at end of file