diff --git a/deploy-manage/deploy/cloud-enterprise/ece-install-offline-images.md b/deploy-manage/deploy/cloud-enterprise/ece-install-offline-images.md
index 0396ea7637..d2f66306b0 100644
--- a/deploy-manage/deploy/cloud-enterprise/ece-install-offline-images.md
+++ b/deploy-manage/deploy/cloud-enterprise/ece-install-offline-images.md
@@ -14,9 +14,9 @@ Versions of the {{stack}}, containing {{es}}, {{kib}}, and other products, are a
The first table contains the stack versions that shipped with the 4.0 version of {{ece}}. You can also check the [most recent stack packs and Docker images](#ece-recent-download-list), which might have released after the 4.0 version of ECE, as well as the [full list of available stack packs and Docker images](#ece-full-download-list).
-| Docker images included with {{ece}} 4.0.1 |
+| Docker images included with {{ece}} {{ece_version}} |
| --- |
-| docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1 |
+| docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}} |
| docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0 |
| docker.elastic.co/cloud-release/kibana-cloud:8.18.0 |
| docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0 |
diff --git a/deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry.md b/deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry.md
index b5033c33b2..c30d2e7cdb 100644
--- a/deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry.md
+++ b/deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry.md
@@ -15,8 +15,8 @@ To perform an offline installation without a private Docker registry, you have t
1. On an internet-connected host that has Docker installed, download the [Available Docker Images](ece-install-offline-images.md). Note that for ECE version 4.0, if you want to use {{stack}} version 9.0 in your deployments, you need to download and make available both the version 8.x and version 9.x Docker images (the version 8.x images are required for system deployments).
- ```sh
- docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1
+ ```sh subs=true
+ docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
docker pull docker.elastic.co/cloud-release/kibana-cloud:8.18.0
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0
@@ -26,15 +26,15 @@ To perform an offline installation without a private Docker registry, you have t
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:9.0.0
```
- For example, for {{ece}} 4.0.1 and the {{stack}} versions it shipped with, you need:
+ For example, for {{ece}} {{ece_version}} and the {{stack}} versions it shipped with, you need:
- * {{ece}} 4.0.1
+ * {{ece}} {{ece_version}}
* {{es}} 9.0.0, {{kib}} 9.0.0, and APM 9.0.0
2. Create .tar files of the images:
- ```sh
- docker save -o ece.4.0.1.tar docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1
+ ```sh subs=true
+ docker save -o ece.{{ece_version}}.tar docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
docker save -o es.8.18.0.tar docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
docker save -o kibana.8.18.0.tar docker.elastic.co/cloud-release/kibana-cloud:8.18.0
docker save -o apm.8.18.0.tar docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0
@@ -47,8 +47,8 @@ To perform an offline installation without a private Docker registry, you have t
3. Copy the .tar files to a location on your network where they are available to each host where you plan to install {{ece}}. Alternatively, you can copy the .tar files to each host directly.
4. On each host, load the images into Docker, replacing `FILE_PATH` with the correct path to the .tar files:
- ```sh
- docker load < FILE_PATH/ece.4.0.1.tar
+ ```sh subs=true
+ docker load < FILE_PATH/ece.{{ece_version}}.tar
docker load < FILE_PATH/es.8.18.0.tar
docker load < FILE_PATH/kibana.8.18.0.tar
docker load < FILE_PATH/apm.8.18.0.tar
diff --git a/deploy-manage/deploy/cloud-enterprise/ece-install-offline-with-registry.md b/deploy-manage/deploy/cloud-enterprise/ece-install-offline-with-registry.md
index ad225208b7..aa327bfda9 100644
--- a/deploy-manage/deploy/cloud-enterprise/ece-install-offline-with-registry.md
+++ b/deploy-manage/deploy/cloud-enterprise/ece-install-offline-with-registry.md
@@ -21,8 +21,8 @@ Installing ECE on multiple hosts with your own registry server is simpler, becau
2. On an internet-connected host that has Docker installed, download the [Available Docker Images](ece-install-offline-images.md) and push them to your private Docker registry. Note that for ECE version 4.0, if you want to use {{stack}} version 9.0 in your deployments, you need to download and make available both the version 8.x and version 9.x Docker images.
- ```sh
- docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1
+ ```sh subs=true
+ docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
docker pull docker.elastic.co/cloud-release/kibana-cloud:8.18.0
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0
@@ -32,9 +32,9 @@ Installing ECE on multiple hosts with your own registry server is simpler, becau
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:9.0.0
```
- For example, for {{ece}} 4.0.1 and the {{stack}} versions it shipped with, you need:
+ For example, for {{ece}} {{ece_version}} and the {{stack}} versions it shipped with, you need:
- * {{ece}} 4.0.1
+ * {{ece}} {{ece_version}}
* {{es}} 9.0.0, {{kib}} 9.0.0, APM 9.0.0
:::{important}
@@ -43,8 +43,8 @@ Installing ECE on multiple hosts with your own registry server is simpler, becau
3. Tag the Docker images with your private registry URL by replacing `REGISTRY` with your actual registry address, for example `my.private.repo:5000`:
- ```sh
- docker tag docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1 REGISTRY/cloud-enterprise/elastic-cloud-enterprise:4.0.1
+ ```sh subs=true
+ docker tag docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}} REGISTRY/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
docker tag docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0 REGISTRY/cloud-release/elasticsearch-cloud-ess:8.18.0
docker tag docker.elastic.co/cloud-release/kibana-cloud:8.18.0 REGISTRY/cloud-release/kibana-cloud:8.18.0
docker tag docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0 REGISTRY/cloud-release/elastic-agent-cloud:8.18.0
@@ -56,8 +56,8 @@ Installing ECE on multiple hosts with your own registry server is simpler, becau
4. Push the Docker images to your private Docker registry, using the same tags from the previous step. Replace `REGISTRY` with your actual registry URL, for example `my.private.repo:5000`:
- ```sh
- docker push REGISTRY/cloud-enterprise/elastic-cloud-enterprise:4.0.1
+ ```sh subs=true
+ docker push REGISTRY/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
docker push REGISTRY/cloud-release/elasticsearch-cloud-ess:8.18.0
docker push REGISTRY/cloud-release/kibana-cloud:8.18.0
docker push REGISTRY/cloud-release/elastic-agent-cloud:8.18.0
diff --git a/deploy-manage/upgrade/orchestrator/upgrade-cloud-enterprise.md b/deploy-manage/upgrade/orchestrator/upgrade-cloud-enterprise.md
index 1331c9f51b..b6bbeda119 100644
--- a/deploy-manage/upgrade/orchestrator/upgrade-cloud-enterprise.md
+++ b/deploy-manage/upgrade/orchestrator/upgrade-cloud-enterprise.md
@@ -27,16 +27,16 @@ During the upgrade window, there might be a short period of time during which yo
## The upgrade version matrix [ece-upgrade-version-matrix]
-The following table shows the recommended upgrade paths from older {{ece}} versions to 4.0.1.
+The following table shows the recommended upgrade paths from older {{ece}} versions to {{ece_version}}.
| Upgrade from | Recommended upgrade path to 4.0 |
| --- | --- |
-| Any 3.x version | 1. Upgrade to 3.8.0
2. Upgrade to 4.0.1
|
-| 2.13 | 1. Upgrade to 3.8.0
2. Upgrade to 4.0.1
|
-| 2.5-2.12 | 1. Upgrade to 2.13.4
2. Upgrade to 3.8.0
3. Upgrade to 4.0.1
|
-| 2.0-2.4 | 1. Upgrade to 2.5.1
2. Upgrade to 2.13.4
3. Upgrade to 3.8.0
4. Upgrade to 4.0.1
|
+| Any 3.x version | 1. Upgrade to 3.8.0
2. Upgrade to {{ece_version}}
|
+| 2.13 | 1. Upgrade to 3.8.0
2. Upgrade to {{ece_version}}
|
+| 2.5-2.12 | 1. Upgrade to 2.13.4
2. Upgrade to 3.8.0
3. Upgrade to {{ece_version}}
|
+| 2.0-2.4 | 1. Upgrade to 2.5.1
2. Upgrade to 2.13.4
3. Upgrade to 3.8.0
4. Upgrade to {{ece_version}}
|
-If you have to upgrade to any of the intermediate versions, follow the upgrade instructions of the relevant release before upgrading to 4.0.1:
+If you have to upgrade to any of the intermediate versions, follow the upgrade instructions of the relevant release before upgrading to {{ece_version}}:
- [ECE 2.5 Upgrade](https://www.elastic.co/guide/en/cloud-enterprise/2.5/ece-upgrade.html)
- [ECE 2.13 Upgrade](https://www.elastic.co/guide/en/cloud-enterprise/2.13/ece-upgrade.html)
@@ -141,8 +141,8 @@ You can follow along while each container for {{ece}} is upgraded on the hosts t
By default, ECE updates to the most current available version. If you want to upgrade to a specific ECE version, use the `--cloud-enterprise-version` option:
-```sh
-bash <(curl -fsSL https://download.elastic.co/cloud/elastic-cloud-enterprise.sh) upgrade --user admin --pass $PASSWORD --cloud-enterprise-version 4.0.1
+```sh subs=true
+bash <(curl -fsSL https://download.elastic.co/cloud/elastic-cloud-enterprise.sh) upgrade --user admin --pass $PASSWORD --cloud-enterprise-version {{ece_version}}
```
diff --git a/docset.yml b/docset.yml
index a6ad1537ea..ddbfd2e95b 100644
--- a/docset.yml
+++ b/docset.yml
@@ -274,6 +274,7 @@ subs:
fleet-server-pull: "https://github.com/elastic/fleet-server/pull/"
kib-pull: "https://github.com/elastic/kibana/pull/"
stack-version: "9.0.0"
+ ece_version: "4.0.1"
eck_version: "3.0.0"
eck_release_branch: "3.0"
eck_helm_minimum_version: "3.2.0"