Skip to content

Commit 7cb4b81

Browse files
committed
appease lint & fmt
Signed-off-by: Spike Curtis <spike@coder.com>
1 parent 27c8314 commit 7cb4b81

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scaletest/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ All of the above arguments may be specified as environment variables. Consult th
4848

4949
To capture Prometheus metrics from the loadtest, two environment variables are required:
5050

51-
* `SCALETEST_PROMETHEUS_REMOTE_WRITE_USER`
52-
* `SCALETEST_PROMETHEUS_REMOTE_WRITE_PASSWORD`
51+
- `SCALETEST_PROMETHEUS_REMOTE_WRITE_USER`
52+
- `SCALETEST_PROMETHEUS_REMOTE_WRITE_PASSWORD`
5353

5454
### Enterprise License
5555

scaletest/scaletest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ maybedryrun "$DRY_RUN" kubectl --kubeconfig="${KUBECONFIG}" -n "coder-${SCALETES
156156
echo "Initializing Coder deployment."
157157
DRY_RUN="$DRY_RUN" "${PROJECT_ROOT}/scaletest/lib/coder_init.sh" "${SCALETEST_CODER_URL}"
158158

159-
if [[ ! -z "${SCALETEST_CODER_LICENSE}" ]]; then
159+
if [[ -n "${SCALETEST_CODER_LICENSE}" ]]; then
160160
echo "Applying Coder Enterprise License"
161161
DRY_RUN="$DRY_RUN" "${PROJECT_ROOT}/scaletest/lib/coder_shim.sh" license add -l "${SCALETEST_CODER_LICENSE}"
162162
fi

scaletest/terraform/vars.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,5 +160,5 @@ variable "prometheus_remote_write_send_interval" {
160160

161161
variable "coder_experiments" {
162162
description = "Coder Experiments to enable"
163-
default = ""
163+
default = ""
164164
}

0 commit comments

Comments
 (0)