From 582479f52b2212b82580ac847733c1fb8d7c0531 Mon Sep 17 00:00:00 2001 From: Alessandro Stoltenberg Date: Fri, 6 Jun 2025 15:53:19 +0200 Subject: [PATCH 1/2] Update configure-host-ubuntu.md --- .../cloud-enterprise/configure-host-ubuntu.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md b/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md index 845de7437..d015f74d4 100644 --- a/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md +++ b/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md @@ -12,17 +12,20 @@ products: # Configure an Ubuntu host [ece-configure-hosts-ubuntu] -The following instructions show you how to prepare your hosts on 20.04 LTS (Focal Fossa) and Ubuntu 22.04 LTS (Jammy Jellyfish). +The following instructions show you how to prepare your hosts on 24.04 LTS (Noble Numbat). -* [Install Docker 24.0](#ece-install-docker-ubuntu) +* [Install Docker 27.0](#ece-install-docker-ubuntu) * [Set up XFS quotas](#ece-xfs-setup-ubuntu) * [Update the configurations settings](#ece-update-config-ubuntu) -* [Configure the Docker daemon options](#ece-configure-docker-daemon-ubuntu) +* [Configure the Docker daemon options](#ece-configure-docker-daemon-ubuntu) +::::{note} +Please make sure to run the following steps with a user configured according to [Users and permissions](ece-users-permissions.md) +:::: ## Install Docker [ece-install-docker-ubuntu] -Install Docker LTS version 24.0 for Ubuntu 20.04 or 22.04. +Install Docker version 27.0 for Ubuntu 24.04. ::::{important} Make sure to use a combination of Linux distribution and Docker version that is supported, following our official [Support matrix](https://www.elastic.co/support/matrix#elastic-cloud-enterprise). Using unsupported combinations can cause multiple issues with you ECE environment, such as failures to create system deployments, to upgrade workload deployments, proxy timeouts, and more. @@ -55,10 +58,10 @@ Docker 25 and higher are not compatible with ECE 3.7. $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null ``` -4. Install the correct version of the `docker-ce` package, for Ubuntu 20.04 LTS (Focal Fossa) or Ubuntu 22.04 LTS (Jammy Jellyfish): +4. Install the correct version of the `docker-ce` package, for Ubuntu 24.04 LTS (Noble Numbat): ```sh - sudo apt install -y docker-ce=5:24.0.* docker-ce-cli=5:24.0.* containerd.io + sudo apt install -y docker-ce=5:27.0.* docker-ce-cli=5:27.0.* containerd.io ``` From 4d3e4b596a574bf8389ac008a4e7bd2c55e623b3 Mon Sep 17 00:00:00 2001 From: Alessandro Stoltenberg Date: Fri, 6 Jun 2025 16:11:22 +0200 Subject: [PATCH 2/2] Update configure-host-ubuntu.md added note about ECE installation user, as we own the `/mnt/data` directory with `$USER` in the steps provided --- deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md b/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md index d015f74d4..6a5faf86a 100644 --- a/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md +++ b/deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md @@ -21,6 +21,7 @@ The following instructions show you how to prepare your hosts on 24.04 LTS (Nobl ::::{note} Please make sure to run the following steps with a user configured according to [Users and permissions](ece-users-permissions.md) +The following steps assume that you use the same user that is used to install ECE later on. :::: ## Install Docker [ece-install-docker-ubuntu]