From c774bc6c7b1b44d7da484c5b0f736e44cf0d7c96 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:59:37 -0700 Subject: [PATCH] [8.15](backport #4246) [Observability docs] Change 'beats' namespace to 'elastic-agent' (#4255) * [Obs docs] Change 'beats' namespace to 'elastic-agent' (#4246) (cherry picked from commit 35cba813693720eaefe504a8307381b297e9ed00) # Conflicts: # docs/en/serverless/synthetics/synthetics-private-location.mdx * Delete docs/en/serverless directory * Rebuild --------- Co-authored-by: David Kilfoyle <41695641+kilfoyle@users.noreply.github.com> Co-authored-by: github-actions[bot] Co-authored-by: David Kilfoyle --- docs/en/integrations/developer-workflow-fleet.asciidoc | 2 +- docs/en/observability/synthetics-private-location.asciidoc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/integrations/developer-workflow-fleet.asciidoc b/docs/en/integrations/developer-workflow-fleet.asciidoc index 50889fba28..ec7825e2bb 100644 --- a/docs/en/integrations/developer-workflow-fleet.asciidoc +++ b/docs/en/integrations/developer-workflow-fleet.asciidoc @@ -101,7 +101,7 @@ To run the Fleet Server Docker container: + [source,terminal] ---- -docker run -e KIBANA_HOST=http://{YOUR-IP}:5601/{BASE-PATH} -e KIBANA_USERNAME=elastic -e KIBANA_PASSWORD=changeme -e ELASTICSEARCH_HOST=http://{YOUR-IP}:9200 -e ELASTICSEARCH_USERNAME=elastic -e ELASTICSEARCH_PASSWORD=changeme -e KIBANA_FLEET_SETUP=1 -e FLEET_SERVER_ENABLE=1 -e FLEET_SERVER_INSECURE_HTTP=1 -p 8220:8220 docker.elastic.co/beats/elastic-agent:{VERSION} +docker run -e KIBANA_HOST=http://{YOUR-IP}:5601/{BASE-PATH} -e KIBANA_USERNAME=elastic -e KIBANA_PASSWORD=changeme -e ELASTICSEARCH_HOST=http://{YOUR-IP}:9200 -e ELASTICSEARCH_USERNAME=elastic -e ELASTICSEARCH_PASSWORD=changeme -e KIBANA_FLEET_SETUP=1 -e FLEET_SERVER_ENABLE=1 -e FLEET_SERVER_INSECURE_HTTP=1 -p 8220:8220 docker.elastic.co/elastic-agent/elastic-agent:{VERSION} ---- + Ensure you provide the `-p 8220:8220` port mapping to map the Fleet Server container's port `8220` to your local machine's port `8220` in order for Fleet to communicate with Fleet Server. diff --git a/docs/en/observability/synthetics-private-location.asciidoc b/docs/en/observability/synthetics-private-location.asciidoc index 668f69c706..9295bc5dac 100644 --- a/docs/en/observability/synthetics-private-location.asciidoc +++ b/docs/en/observability/synthetics-private-location.asciidoc @@ -87,7 +87,7 @@ To pull the Docker image run: [source,sh,subs="attributes"] ---- -docker pull docker.elastic.co/beats/elastic-agent-complete:{version} +docker pull docker.elastic.co/elastic-agent/elastic-agent-complete:{version} ---- endif::[] @@ -116,7 +116,7 @@ docker run \ --env FLEET_ENROLLMENT_TOKEN={enrollment-token} \ --cap-add=NET_RAW \ --cap-add=SETUID \ - --rm docker.elastic.co/beats/elastic-agent-complete:{version} + --rm docker.elastic.co/elastic-agent/elastic-agent-complete:{version} ---- endif::[]