Skip to content

Commit 8e0e1a3

Browse files
Fix Incorrect ECE Version in Air-Gapped Setup Instructions (#2420)
PR based on [this request](https://github.com/elastic/docs-content/issues/2392): ### What documentation page is affected https://www.elastic.co/docs/deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry ### What change would you like to see? In the [air-gapped installation guide](https://www.elastic.co/docs/deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry), we instruct users to pull : ``` docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.1.0 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 docker pull docker.elastic.co/cloud-release/enterprise-search-cloud:8.18.0 docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.0.0 docker pull docker.elastic.co/cloud-release/kibana-cloud:9.0.0 docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:9.0.0 ``` But there is Mismatch in Elasticsearch and Kibana Versions the doc specifies pulling version 8.18.0 of Elastic components, but the installer actually requires: elasticsearch-cloud-ess:8.18.2 kibana-cloud:8.18.2 Also it says : `docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.1.0` but it supposed to be `docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1` ### Additional info _No response_
1 parent c8155a4 commit 8e0e1a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deploy-manage/deploy/cloud-enterprise/ece-install-offline-no-registry.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ To perform an offline installation without a private Docker registry, you have t
1717

1818
```sh subs=true
1919
docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{version.ece}}
20-
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
21-
docker pull docker.elastic.co/cloud-release/kibana-cloud:8.18.0
20+
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.2
21+
docker pull docker.elastic.co/cloud-release/kibana-cloud:8.18.2
2222
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0
2323
docker pull docker.elastic.co/cloud-release/enterprise-search-cloud:8.18.0
2424
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.0.0
@@ -35,8 +35,8 @@ To perform an offline installation without a private Docker registry, you have t
3535

3636
```sh subs=true
3737
docker save -o ece.{{version.ece}}.tar docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{version.ece}}
38-
docker save -o es.8.18.0.tar docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
39-
docker save -o kibana.8.18.0.tar docker.elastic.co/cloud-release/kibana-cloud:8.18.0
38+
docker save -o es.8.18.0.tar docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.2
39+
docker save -o kibana.8.18.0.tar docker.elastic.co/cloud-release/kibana-cloud:8.18.2
4040
docker save -o apm.8.18.0.tar docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0
4141
docker save -o enterprise-search.8.18.0.tar docker.elastic.co/cloud-release/enterprise-search-cloud:8.18.0
4242
docker save -o es.9.0.0.tar docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.0.0

0 commit comments

Comments
 (0)