Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add a troubleshooting update to the loadtesting docs #26415

Merged
merged 1 commit into from
Feb 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions infrastructure/loadtesting/terraform/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,22 @@ provider "docker" {
}
[...]
```

If you are getting the following error when running `terraform apply`:

```sh
│ Error: Error building docker image: 1: The command '/bin/sh -c git clone -b $TAG --depth=1 --no-tags --progress --no-recurse-submodules https://github.com/fleetdm/fleet.git && cd /go/fleet/cmd/osquery-perf/ && go build .' returned a non-zero code: 1
│ with docker_registry_image.loadtest,
│ on ecr.tf line 46, in resource "docker_registry_image" "loadtest":
│ 46: resource "docker_registry_image" "loadtest" {
```

1. Check your Docker virtual machine settings. Open Docker Desktop, then open the settings (`cmd-,`
or the gear in the top right of the screen). Scroll down to the "Virtual Machine Options"
section.

2. If you currently have the "Apple virtualization framework" setting selected, select the "Docker
VMM" option instead. Click "Apply & restart" in the bottom right.

Once Docker has restarted, re-run `terraform apply` and you should be good to go!
Loading