[9.0][Fleet] Update inputs_with_standalone_docker_agent.ts (#216623)

Related to https://github.com/elastic/kibana/pull/216591
Fix docker image
This commit is contained in:
Julia Bardi 2025-04-01 16:43:58 +02:00 committed by GitHub
parent 3afe733159
commit 659781ee3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,7 +39,7 @@ export default function (providerContext: FtrProviderContext) {
});
apiKey = `${res.id}:${res.api_key}`;
agentImage = `docker.elastic.co/beats/elastic-agent:${await getLatestVersion()}`;
agentImage = `docker.elastic.co/elastic-agent/elastic-agent:${await getLatestVersion()}`;
log.info(agentImage);
await execa('docker', ['pull', agentImage]);
});