Skip to content

Commit 4ff911e

Browse files
Change 'beats' namespace to 'elastic-agent' (#1315) (#1318)
(cherry picked from commit 11ea597) Co-authored-by: David Kilfoyle <[email protected]>
1 parent 11a47c0 commit 4ff911e

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

docs/en/ingest-management/elastic-agent/advanced-kubernetes-managed-by-fleet.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ Inside the downloaded manifest, update the Daemonset resource:
7373
------------------------------------------------
7474
containers:
7575
- name: elastic-agent
76-
image: docker.elastic.co/beats/elastic-agent: <ImageVersion>
76+
image: docker.elastic.co/elastic-agent/elastic-agent: <ImageVersion>
7777
args: ["-c", "/etc/elastic-agent/agent.yml", "-e"]
7878
------------------------------------------------
7979

8080
Notes::
81-
The <ImageVersion> is just a placeholder for the elastic-agent image version that you will download in your manifest: eg. `image: docker.elastic.co/beats/elastic-agent: 8.11.0`
81+
The <ImageVersion> is just a placeholder for the elastic-agent image version that you will download in your manifest: eg. `image: docker.elastic.co/elastic-agent/elastic-agent: 8.11.0`
8282
Important thing is to update your manifest with args details
8383

8484
[source,yaml]

docs/en/ingest-management/elastic-agent/configuration/autodiscovery/kubernetes-hints-autodiscover.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ An init container is required to download the hints templates.
182182
----
183183
initContainers:
184184
- name: k8s-templates-downloader
185-
image: docker.elastic.co/beats/elastic-agent:{branch}
185+
image: docker.elastic.co/elastic-agent/elastic-agent:{branch}
186186
command: ['bash']
187187
args:
188188
- -c

docs/en/ingest-management/elastic-agent/elastic-agent-container.asciidoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ Run the `docker pull` command against the Elastic Docker registry:
3131

3232
[source,terminal,subs="attributes"]
3333
----
34-
docker pull docker.elastic.co/beats/elastic-agent:{version}
34+
docker pull docker.elastic.co/elastic-agent/elastic-agent:{version}
3535
----
3636

3737
If you want to run Synthetics tests, run the `docker pull` command to fetch the *elastic-agent-complete* image:
3838

3939
[source,terminal,subs="attributes"]
4040
----
41-
docker pull docker.elastic.co/beats/elastic-agent-complete:{version}
41+
docker pull docker.elastic.co/elastic-agent/elastic-agent-complete:{version}
4242
----
4343

4444
[discrete]
@@ -54,7 +54,7 @@ Run the following commands to verify the *elastic-agent* container image signatu
5454
["source","sh",subs="attributes"]
5555
--------------------------------------------
5656
wget https://artifacts.elastic.co/cosign.pub <1>
57-
cosign verify --key cosign.pub docker.elastic.co/beats/elastic-agent:{version} <2>
57+
cosign verify --key cosign.pub docker.elastic.co/elastic-agent/elastic-agent:{version} <2>
5858
--------------------------------------------
5959
<1> Download the Elastic public key to verify container signature
6060
<2> Verify the container against the Elastic public key
@@ -64,14 +64,14 @@ If you're using the *elastic-agent-complete* image, run the commands as follows:
6464
["source","sh",subs="attributes"]
6565
--------------------------------------------
6666
wget https://artifacts.elastic.co/cosign.pub <1>
67-
cosign verify --key cosign.pub docker.elastic.co/beats/elastic-agent-complete:{version} <2>
67+
cosign verify --key cosign.pub docker.elastic.co/elastic-agent/elastic-agent-complete:{version} <2>
6868
--------------------------------------------
6969

7070
The command prints the check results and the signature payload in JSON format, for example:
7171

7272
["source","sh",subs="attributes"]
7373
--------------------------------------------
74-
Verification for docker.elastic.co/beats/elastic-agent-complete:{version} --
74+
Verification for docker.elastic.co/elastic-agent/elastic-agent-complete:{version} --
7575
The following checks were performed on each of these signatures:
7676
- The cosign claims were validated
7777
- Existence of the claims in the transparency log was verified offline
@@ -87,7 +87,7 @@ To see the full list, run:
8787

8888
[source,terminal,subs="attributes"]
8989
----
90-
docker run --rm docker.elastic.co/beats/elastic-agent:{version} elastic-agent container -h
90+
docker run --rm docker.elastic.co/elastic-agent/elastic-agent:{version} elastic-agent container -h
9191
----
9292

9393
[discrete]
@@ -108,7 +108,7 @@ For example:
108108
109109
[source,terminal,subs="attributes"]
110110
----
111-
docker run --rm --mount source=$(pwd)/state,destination=/state -e {STATE_PATH}=/state --read-only docker.elastic.co/beats/elastic-agent:{version} <1>
111+
docker run --rm --mount source=$(pwd)/state,destination=/state -e {STATE_PATH}=/state --read-only docker.elastic.co/elastic-agent/elastic-agent:{version} <1>
112112
----
113113
114114
Where {STATE_PATH} is the path to a stateful directory to mount where {agent} application data can be stored.
@@ -133,7 +133,7 @@ The example below shows how to enroll an {agent}:
133133
version: "3"
134134
services:
135135
elastic-agent:
136-
image: docker.elastic.co/beats/elastic-agent:{version} <1>
136+
image: docker.elastic.co/elastic-agent/elastic-agent:{version} <1>
137137
container_name: elastic-agent
138138
restart: always
139139
user: root # note, synthetic browser monitors require this set to `elastic-agent`

docs/en/ingest-management/fleet/filter-agent-list-by-tags.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ docker run \
9999
--env FLEET_URL=<Fleet Server host URL> \
100100
--env FLEET_ENROLLMENT_TOKEN=<enrollment token> \
101101
--env ELASTIC_AGENT_TAGS=docker,dev
102-
--rm docker.elastic.co/beats/elastic-agent:{version}
102+
--rm docker.elastic.co/elastic-agent/elastic-agent:{version}
103103
----
104104

105105
For more information about running on containers, refer to the guides under

docs/en/ingest-management/fleet/fleet-server-secrets.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ docker run \
210210
-v /path/to/creds:/creds:ro \
211211
-e FLEET_SERVER_CERT_KEY_PASSPHRASE=/creds/passphrase \
212212
-e FLEET_SERVER_SERVICE_TOKEN_PATH=/creds/service-token \
213-
--rm docker.elastic.co/beats/elastic-agent
213+
--rm docker.elastic.co/elastic-agent/elastic-agent
214214
----
215215

216216
=== Secrets in Kubernetes
@@ -244,7 +244,7 @@ spec:
244244
secretName: fleet-server-service-token
245245
containers:
246246
- name: fleet-server
247-
image: docker.elastic.co/beats/elastic-agent
247+
image: docker.elastic.co/elastic-agent/elastic-agent
248248
volumeMounts:
249249
- name: key-passphrase
250250
mountPath: /var/secrets/passphrase

docs/en/ingest-management/tab-widgets/run-agent-image/content.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ docker run \
66
--env FLEET_ENROLL=1 \ <1>
77
--env FLEET_URL=<fleet-server-host-url> \ <2>
88
--env FLEET_ENROLLMENT_TOKEN=<enrollment-token> \ <3>
9-
--rm docker.elastic.co/beats/elastic-agent:{version} <4>
9+
--rm docker.elastic.co/elastic-agent/elastic-agent:{version} <4>
1010
----
1111

1212
<1> Set to 1 to enroll the {agent} into {fleet-server}.
@@ -29,7 +29,7 @@ docker run \
2929
--env FLEET_SERVER_SERVICE_TOKEN=<service-token> \ <3>
3030
--env FLEET_SERVER_POLICY_ID=<fleet-server-policy> \ <4>
3131
-p 8220:8220 \ <5>
32-
--rm docker.elastic.co/beats/elastic-agent:{version} <6>
32+
--rm docker.elastic.co/elastic-agent/elastic-agent:{version} <6>
3333
----
3434

3535
<1> Set to 1 to bootstrap Fleet Server on this Elastic Agent.

0 commit comments

Comments
 (0)