Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[install/infra] Add namespace/context to eks Terraform workspaces (#1…
…0809) 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.
- Loading branch information