-
Notifications
You must be signed in to change notification settings - Fork 891
feat(scaletest): add greedy agent test to runner #10559
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
Conversation
0a3d00a
to
45b4f12
Compare
7a8eb52
to
1278cbe
Compare
@@ -584,7 +630,7 @@ resource "kubernetes_pod" "main" { | |||
} | |||
# Set the pod delete timeout to termination_grace_period_seconds + 1m. | |||
timeouts { | |||
delete = "${(local.workspace_pod_termination_grace_period_seconds + 120) / 60}s" | |||
delete = "${(local.workspace_pod_termination_grace_period_seconds + 120)}s" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review: bug fix, already in seconds.
219a42a
to
11926ce
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 stamp
# Unzip scripts and add to path. | ||
# shellcheck disable=SC2153 | ||
echo "Extracting scaletest scripts into ${SCRIPTS_DIR}..." | ||
base64 -d <<<"${SCRIPTS_ZIP}" >/tmp/scripts.zip | ||
rm -rf "${SCRIPTS_DIR}" || true | ||
mkdir -p "${SCRIPTS_DIR}" | ||
unzip -o /tmp/scripts.zip -d "${SCRIPTS_DIR}" | ||
# Chmod to work around https://github.com/coder/coder/issues/10034 | ||
chmod +x "${SCRIPTS_DIR}"/*.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice finding!
Part of #8556