-
Notifications
You must be signed in to change notification settings - Fork 881
fix(scaletest): deploy external provisionerd #8618
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
scaletest/terraform/coder.tf
Outdated
# Ref: https://github.com/coder/coder/issues/8243 | ||
resource "local_file" "provisionerd_deployment" { | ||
filename = "${path.module}/../.coderv2/provisionerd-deployment.yaml" | ||
content = <<EOF |
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.
curious: can this be source
d from a regular YAML file?
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.
I think you can include it as a template, but I find it more straightforward to just inline.
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.
👍
My only concern is IDE support, but that is not affecting the product.
resource "local_file" "provisionerd_deployment" { | ||
filename = "${path.module}/../.coderv2/provisionerd-deployment.yaml" | ||
content = <<EOF | ||
apiVersion: apps/v1 |
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.
Consider formatting with prettier, just so it matches our other YAML?
Other minor fixes: