Skip to content

Commit a4be408

Browse files
committed
fumpt
1 parent 68c583f commit a4be408

8 files changed

+25
-25
lines changed

scaletest/terraform/coder.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ resource "local_file" "kubernetes_template" {
220220

221221
resource "local_file" "output_vars" {
222222
filename = "${path.module}/.coderv2/url"
223-
content = local.coder_url
223+
content = local.coder_url
224224
}
225225

226226
output "coder_url" {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodepool_machine_type_coder = "t2d-standard-8"
1+
nodepool_machine_type_coder = "t2d-standard-8"
22
nodepool_machine_type_workspaces = "t2d-standard-8"
3-
coder_cpu = "7"
4-
coder_mem = "31Gi"
3+
coder_cpu = "7"
4+
coder_mem = "31Gi"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
nodepool_machine_type_coder = "t2d-standard-8"
1+
nodepool_machine_type_coder = "t2d-standard-8"
22
nodepool_machine_type_workspaces = "t2d-standard-8"
3-
coder_replicas = 2
4-
coder_cpu = "7"
5-
coder_mem = "31Gi"
3+
coder_replicas = 2
4+
coder_cpu = "7"
5+
coder_mem = "31Gi"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodepool_machine_type_coder = "t2d-standard-4"
1+
nodepool_machine_type_coder = "t2d-standard-4"
22
nodepool_machine_type_workspaces = "t2d-standard-4"
3-
coder_cpu = "3500m"
4-
coder_mem = "15Gi"
3+
coder_cpu = "3500m"
4+
coder_mem = "15Gi"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
nodepool_machine_type_coder = "t2d-standard-8"
1+
nodepool_machine_type_coder = "t2d-standard-8"
22
nodepool_machine_type_workspaces = "t2d-standard-8"
3-
nodepool_size_workspaces = 2
4-
coder_cpu = "3500m"
5-
coder_mem = "15Gi"
3+
nodepool_size_workspaces = 2
4+
coder_cpu = "3500m"
5+
coder_mem = "15Gi"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodepool_machine_type_coder = "t2d-standard-2"
1+
nodepool_machine_type_coder = "t2d-standard-2"
22
nodepool_machine_type_workspaces = "t2d-standard-2"
3-
coder_cpu = "1500m"
4-
coder_mem = "7Gi"
3+
coder_cpu = "1500m"
4+
coder_mem = "7Gi"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
nodepool_machine_type_coder = "t2d-standard-2"
1+
nodepool_machine_type_coder = "t2d-standard-2"
22
nodepool_machine_type_workspaces = "t2d-standard-2"
3-
nodepool_size_workspaces = 2
4-
coder_cpu = "1500m"
5-
coder_mem = "7Gi"
3+
nodepool_size_workspaces = 2
4+
coder_cpu = "1500m"
5+
coder_mem = "7Gi"

scripts/scaletest.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ if [[ -z "${SCALETEST_PROJECT}" ]]; then
2626
exit 1
2727
fi
2828

29-
if [[ ! -f "${SCALETEST_SCENARIO_VARS}" ]] ; then
29+
if [[ ! -f "${SCALETEST_SCENARIO_VARS}" ]]; then
3030
echo "No definition for scenario ${SCALETEST_SCENARIO} exists. Please create it and try again"
3131
exit 1
3232
fi
3333

3434
echo "Writing scaletest secrets to file."
35-
SCALETEST_NAME="${SCALETEST_NAME}" envsubst < "${SCALETEST_SECRETS_TEMPLATE}" > "${SCALETEST_SECRETS}"
35+
SCALETEST_NAME="${SCALETEST_NAME}" envsubst <"${SCALETEST_SECRETS_TEMPLATE}" >"${SCALETEST_SECRETS}"
3636

3737
pushd "${PROJECT_ROOT}/scaletest/terraform"
3838

@@ -55,7 +55,7 @@ until curl --output /dev/null --silent --fail "${SCALETEST_CODER_URL}/healthz";
5555
fi
5656

5757
echo -n '.'
58-
attempt_counter=$((attempt_counter+1))
58+
attempt_counter=$((attempt_counter + 1))
5959
sleep 10
6060
done
6161

0 commit comments

Comments
 (0)