From 5287c78cbac8dea9b6d0eadfe8e5e71c7ed8f612 Mon Sep 17 00:00:00 2001 From: Mike Bell Date: Wed, 31 Jan 2024 11:13:24 +0000 Subject: [PATCH] Add ulimit note --- runbooks/source/creating-a-live-like.html.md.erb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runbooks/source/creating-a-live-like.html.md.erb b/runbooks/source/creating-a-live-like.html.md.erb index f341f883..38683d6b 100644 --- a/runbooks/source/creating-a-live-like.html.md.erb +++ b/runbooks/source/creating-a-live-like.html.md.erb @@ -37,6 +37,9 @@ to the configuration similar to the live cluster. > To find components that are enabled in live but not in test you can search for `lookup(local.live_workspace, terraform.workspace, false)` in `components.tf`. 2. Add the `starter_pack_count = 40` variable to the starter_pack module + +> Sometimes terraform will error out with an unclear error message this is usually due to a low default `ulimit` to fix this you can set `ulimit -n 2048` + 3. Run `terraform plan` and confirm that your changes are correct 4. Run `terraform apply` to apply the changes to your test cluster 5. You may need to run `plan` and `apply` again as the starter pack addons don't like to be installed all at once