You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[install/infra] Add namespace/context to eks Terraform workspaces (#10809)
At present we generate random 5 character workspace names for our
terraform code. While suitable for machine use, these terse names don't
provide execution context, making it difficult to locate relevant workspaces
and prune old namespaces.
```
$ terraform workspace list|wc -l
298
```
This commit addresses the issue by adding a prefix of the execution
context (EKS) and the current unix epoch to auto-generated terraform
workspace to assist identification of recent CI runs and remove stale
workspaces.
This commit doesn't address this issue in other environments (gke, k3s).
We can address that in a followup commit.
0 commit comments