Skip to content

Commit 0670ccb

Browse files
committed
Merge branch 'network-sec-core' of github.com:elastic/docs-content into network-sec-core
2 parents dc614fa + 5ede8be commit 0670ccb

File tree

14 files changed

+654
-46
lines changed

14 files changed

+654
-46
lines changed

deploy-manage/deploy/cloud-enterprise/ece-install-offline-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Versions of the {{stack}}, containing {{es}}, {{kib}}, and other products, are a
1414

1515
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).
1616

17-
| Docker images included with {{ece}} 4.0.1 |
17+
| Docker images included with {{ece}} {{ece_version}} |
1818
| --- |
19-
| docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1 |
19+
| docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}} |
2020
| docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0 |
2121
| docker.elastic.co/cloud-release/kibana-cloud:8.18.0 |
2222
| docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.0 |

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

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

1616
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).
1717

18-
```sh
19-
docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1
18+
```sh subs=true
19+
docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
2020
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
2121
docker pull docker.elastic.co/cloud-release/kibana-cloud:8.18.0
2222
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
2626
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:9.0.0
2727
```
2828

29-
For example, for {{ece}} 4.0.1 and the {{stack}} versions it shipped with, you need:
29+
For example, for {{ece}} {{ece_version}} and the {{stack}} versions it shipped with, you need:
3030

31-
* {{ece}} 4.0.1
31+
* {{ece}} {{ece_version}}
3232
* {{es}} 9.0.0, {{kib}} 9.0.0, and APM 9.0.0
3333

3434
2. Create .tar files of the images:
3535

36-
```sh
37-
docker save -o ece.4.0.1.tar docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1
36+
```sh subs=true
37+
docker save -o ece.{{ece_version}}.tar docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
3838
docker save -o es.8.18.0.tar docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
3939
docker save -o kibana.8.18.0.tar docker.elastic.co/cloud-release/kibana-cloud:8.18.0
4040
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
4747
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.
4848
4. On each host, load the images into Docker, replacing `FILE_PATH` with the correct path to the .tar files:
4949

50-
```sh
51-
docker load < FILE_PATH/ece.4.0.1.tar
50+
```sh subs=true
51+
docker load < FILE_PATH/ece.{{ece_version}}.tar
5252
docker load < FILE_PATH/es.8.18.0.tar
5353
docker load < FILE_PATH/kibana.8.18.0.tar
5454
docker load < FILE_PATH/apm.8.18.0.tar

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Installing ECE on multiple hosts with your own registry server is simpler, becau
2121

2222
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.
2323

24-
```sh
25-
docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1
24+
```sh subs=true
25+
docker pull docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
2626
docker pull docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0
2727
docker pull docker.elastic.co/cloud-release/kibana-cloud:8.18.0
2828
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
3232
docker pull docker.elastic.co/cloud-release/elastic-agent-cloud:9.0.0
3333
```
3434

35-
For example, for {{ece}} 4.0.1 and the {{stack}} versions it shipped with, you need:
35+
For example, for {{ece}} {{ece_version}} and the {{stack}} versions it shipped with, you need:
3636

37-
* {{ece}} 4.0.1
37+
* {{ece}} {{ece_version}}
3838
* {{es}} 9.0.0, {{kib}} 9.0.0, APM 9.0.0
3939

4040
:::{important}
@@ -43,8 +43,8 @@ Installing ECE on multiple hosts with your own registry server is simpler, becau
4343

4444
3. Tag the Docker images with your private registry URL by replacing `REGISTRY` with your actual registry address, for example `my.private.repo:5000`:
4545

46-
```sh
47-
docker tag docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:4.0.1 REGISTRY/cloud-enterprise/elastic-cloud-enterprise:4.0.1
46+
```sh subs=true
47+
docker tag docker.elastic.co/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}} REGISTRY/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
4848
docker tag docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.0 REGISTRY/cloud-release/elasticsearch-cloud-ess:8.18.0
4949
docker tag docker.elastic.co/cloud-release/kibana-cloud:8.18.0 REGISTRY/cloud-release/kibana-cloud:8.18.0
5050
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
5656

5757
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`:
5858

59-
```sh
60-
docker push REGISTRY/cloud-enterprise/elastic-cloud-enterprise:4.0.1
59+
```sh subs=true
60+
docker push REGISTRY/cloud-enterprise/elastic-cloud-enterprise:{{ece_version}}
6161
docker push REGISTRY/cloud-release/elasticsearch-cloud-ess:8.18.0
6262
docker push REGISTRY/cloud-release/kibana-cloud:8.18.0
6363
docker push REGISTRY/cloud-release/elastic-agent-cloud:8.18.0

deploy-manage/remote-clusters/remote-clusters-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $$$cluster-remote-node-attr$$$
6464
To use [proxy mode](/deploy-manage/remote-clusters/remote-clusters-self-managed.md#proxy-mode) to connect to a remote cluster, set `cluster.remote.<cluster_alias>.mode: proxy` and then configure the following settings.
6565

6666
`cluster.remote.<cluster_alias>.proxy_address`
67-
: The address used for all remote connections.
67+
: The address used for all remote connections. A single address value, either an IP address or a fully qualified domain name (FQDN).
6868

6969
`cluster.remote.<cluster_alias>.proxy_socket_connections`
7070
: The number of socket connections to open per remote cluster. The default is `18`.

deploy-manage/upgrade/orchestrator/upgrade-cloud-enterprise.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ During the upgrade window, there might be a short period of time during which yo
2727

2828
## The upgrade version matrix [ece-upgrade-version-matrix]
2929

30-
The following table shows the recommended upgrade paths from older {{ece}} versions to 4.0.1.
30+
The following table shows the recommended upgrade paths from older {{ece}} versions to {{ece_version}}.
3131

3232
| Upgrade from | Recommended upgrade path to 4.0 |
3333
| --- | --- |
34-
| Any 3.x version | 1. Upgrade to 3.8.0<br>2. Upgrade to 4.0.1<br> |
35-
| 2.13 | 1. Upgrade to 3.8.0<br>2. Upgrade to 4.0.1<br> |
36-
| 2.5-2.12 | 1. Upgrade to 2.13.4<br>2. Upgrade to 3.8.0<br>3. Upgrade to 4.0.1<br> |
37-
| 2.0-2.4 | 1. Upgrade to 2.5.1<br>2. Upgrade to 2.13.4<br>3. Upgrade to 3.8.0<br>4. Upgrade to 4.0.1<br> |
34+
| Any 3.x version | 1. Upgrade to 3.8.0<br>2. Upgrade to {{ece_version}}<br> |
35+
| 2.13 | 1. Upgrade to 3.8.0<br>2. Upgrade to {{ece_version}}<br> |
36+
| 2.5-2.12 | 1. Upgrade to 2.13.4<br>2. Upgrade to 3.8.0<br>3. Upgrade to {{ece_version}}<br> |
37+
| 2.0-2.4 | 1. Upgrade to 2.5.1<br>2. Upgrade to 2.13.4<br>3. Upgrade to 3.8.0<br>4. Upgrade to {{ece_version}}<br> |
3838

39-
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:
39+
If you have to upgrade to any of the intermediate versions, follow the upgrade instructions of the relevant release before upgrading to {{ece_version}}:
4040
- [ECE 2.5 Upgrade](https://www.elastic.co/guide/en/cloud-enterprise/2.5/ece-upgrade.html)
4141
- [ECE 2.13 Upgrade](https://www.elastic.co/guide/en/cloud-enterprise/2.13/ece-upgrade.html)
4242

@@ -141,8 +141,8 @@ You can follow along while each container for {{ece}} is upgraded on the hosts t
141141

142142
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:
143143

144-
```sh
145-
bash <(curl -fsSL https://download.elastic.co/cloud/elastic-cloud-enterprise.sh) upgrade --user admin --pass $PASSWORD --cloud-enterprise-version 4.0.1
144+
```sh subs=true
145+
bash <(curl -fsSL https://download.elastic.co/cloud/elastic-cloud-enterprise.sh) upgrade --user admin --pass $PASSWORD --cloud-enterprise-version {{ece_version}}
146146
```
147147

148148

docset.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ toc:
7070
- toc: reference
7171
- toc: extend
7272
- file: archive.md
73+
- file: versions.md
7374
- hidden: 404.md
7475

7576
subs:
@@ -273,6 +274,7 @@ subs:
273274
fleet-server-pull: "https://github.com/elastic/fleet-server/pull/"
274275
kib-pull: "https://github.com/elastic/kibana/pull/"
275276
stack-version: "9.0.0"
277+
ece_version: "4.0.1"
276278
eck_version: "3.0.0"
277279
eck_release_branch: "3.0"
278280
eck_helm_minimum_version: "3.2.0"
@@ -294,4 +296,4 @@ subs:
294296
cloud-billing-apis: https://www.elastic.co/docs/api/doc/cloud-billing/
295297
cloud-serverless-apis: https://www.elastic.co/docs/api/doc/elastic-cloud-serverless/
296298
ece-apis: https://www.elastic.co/docs/api/doc/cloud-enterprise/
297-
intake-apis: https://www.elastic.co/docs/api/doc/observability-serverless/
299+
intake-apis: https://www.elastic.co/docs/api/doc/observability-serverless/

0 commit comments

Comments
 (0)