Skip to content

Commit

Permalink
feat: allow worker image overrides on Azure (#3378)
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy authored Oct 18, 2024
1 parent 2f24c13 commit fd2cb31
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/artillery/lib/platform/az/aci.js
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,9 @@ class PlatformAzureACI {
const imageVersion =
process.env.ARTILLERY_WORKER_IMAGE_VERSION || IMAGE_VERSION;
const defaultArchitecture = 'x86_64';
const containerImageURL = `public.ecr.aws/d8a4z9o5/artillery-worker:${imageVersion}-${defaultArchitecture}`;
const containerImageURL =
process.env.WORKER_IMAGE_URL ||
`public.ecr.aws/d8a4z9o5/artillery-worker:${imageVersion}-${defaultArchitecture}`;

const client = new ContainerInstanceManagementClient(
credential,
Expand Down

0 comments on commit fd2cb31

Please sign in to comment.