Skip to content

Commit cc1bc74

Browse files
fix: update agent image repository in more places
1 parent 50f7967 commit cc1bc74

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/local-k8s-testing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ FLEET_URL=https://<fleet host>:443
3636
FLEET_ENROLLMENT_TOKEN=<enrollment token>
3737
```
3838

39-
### Run agent
39+
### Run agent
4040

4141
In order to just deploy agent on your local cluster, open a terminal and then execute
4242

@@ -49,7 +49,7 @@ and the output should be something similar to this:
4949
Generating tags...
5050
...
5151
Checking cache...
52-
- docker.elastic.co/beats/elastic-agent: Found Locally
52+
- docker.elastic.co/elastic-agent/elastic-agent: Found Locally
5353
Starting test...
5454
Starting pre-render hooks...
5555
Completed pre-render hooks
@@ -104,7 +104,7 @@ Images loaded in 35.802479ms
104104
Waiting for deployments to stabilize...
105105
Deployments stabilized in 7.654873ms
106106
Listing files to watch...
107-
- docker.elastic.co/beats/elastic-agent
107+
- docker.elastic.co/elastic-agent/elastic-agent
108108
Press Ctrl+C to exit
109109
Not watching for changes...
110110
WARN[0003] unable to get owner from reference: {apps/v1 DaemonSet elastic-agent-standalone 0c579ec4-319a-4e85-99ec-c409260cb6ce 0xc000f950a0 0xc000f950a1} subtask=-1 task=DevLoop

internal/pkg/otel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ If you remove the `create_directory: true` option, you'll need to manually creat
139139
By default, when running Elastic Distribution for OpenTelemetry Collector in Docker, checkpoints are stored in `/usr/share/elastic-agent/otel_registry` by default. To ensure data persists across container restarts, you can use the following command:
140140

141141
```bash
142-
docker run --rm -ti --entrypoint="elastic-agent" --mount type=bind,source=/path/on/host,target=/usr/share/elastic-agent/otel_registry docker.elastic.co/beats/elastic-agent:9.0.0-SNAPSHOT otel
142+
docker run --rm -ti --entrypoint="elastic-agent" --mount type=bind,source=/path/on/host,target=/usr/share/elastic-agent/otel_registry docker.elastic.co/elastic-agent/elastic-agent:9.0.0-SNAPSHOT otel
143143
```
144144

145145
### Known issues:

internal/pkg/otel/templates/README.md.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ If you remove the `create_directory: true` option, you'll need to manually creat
123123
By default, when running Elastic Distribution for OpenTelemetry Collector in Docker, checkpoints are stored in `/usr/share/elastic-agent/otel_registry` by default. To ensure data persists across container restarts, you can use the following command:
124124

125125
```bash
126-
docker run --rm -ti --entrypoint="elastic-agent" --mount type=bind,source=/path/on/host,target=/usr/share/elastic-agent/otel_registry docker.elastic.co/beats/elastic-agent:9.0.0-SNAPSHOT otel
126+
docker run --rm -ti --entrypoint="elastic-agent" --mount type=bind,source=/path/on/host,target=/usr/share/elastic-agent/otel_registry docker.elastic.co/elastic-agent/elastic-agent:9.0.0-SNAPSHOT otel
127127
```
128128

129129
### Known issues:

pkg/testing/kubernetes/supported.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@ var variants = []struct {
5050
}{
5151
{
5252
Name: "basic",
53-
Image: "docker.elastic.co/beats/elastic-agent",
53+
Image: "docker.elastic.co/elastic-agent/elastic-agent",
5454
},
5555
{
5656
Name: "wolfi",
57-
Image: "docker.elastic.co/beats/elastic-agent-wolfi",
57+
Image: "docker.elastic.co/elastic-agent/elastic-agent-wolfi",
5858
},
5959
{
6060
Name: "complete",
61-
Image: "docker.elastic.co/beats/elastic-agent-complete",
61+
Image: "docker.elastic.co/elastic-agent/elastic-agent-complete",
6262
},
6363
{
6464
Name: "complete-wolfi",
65-
Image: "docker.elastic.co/beats/elastic-agent-complete-wolfi",
65+
Image: "docker.elastic.co/elastic-agent/elastic-agent-complete-wolfi",
6666
},
6767
{
6868
Name: "cloud",

skaffold.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build:
88
useBuildkit: false
99
useDockerCLI: true
1010
artifacts:
11-
- image: docker.elastic.co/beats/elastic-agent
11+
- image: docker.elastic.co/elastic-agent/elastic-agent
1212
docker:
1313
dockerfile: Dockerfile.skaffold
1414
noCache: false

0 commit comments

Comments
 (0)